Report generated on 14-Dec-2021 at 02:26:41 by pytest-html v3.1.1
| Packages | {"pluggy": "1.0.0", "py": "1.10.0", "pytest": "6.2.5"} |
| Platform | Windows-10-10.0.22000-SP0 |
| Plugins | {"bdd": "4.1.0", "html": "3.1.1", "metadata": "1.11.0", "order": "1.0.0", "pycharm": "0.7.0", "pytest_check": "1.0.4"} |
| Python | 3.9.4 |
33 tests ran in 9277.57 seconds.
(Un)check the boxes to filter the results.
15 passed, 0 skipped, 18 failed, 0 errors, 0 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Failed | tests/Initialization_tests/E2E_tests/test_initialization_E2E.py::test_inicjacja_zakonczona_sukcesem | 9.81 | |
|
initialization_page = <frontend.objects.Pages.initialization_page.InitializationPage object at 0x000002744B58F9D0> @pytest.mark.order(1) def test_inicjacja_zakonczona_sukcesem(initialization_page): """ Testuje walidacje i dane strony inicjacji WARUNKI WSTĘPNE: - Użytkownik nie jest zainicjowany OPIS KROKU: 1. Otwórz przeglądarkę internetową w aplikacji. 2. Sprawdź, czy jest tytuł 'Building Ecosystem' 3. Sprawdź, czy są 2 pola do wprowadzenia danych dla użytkownika „Admin”. 4. Kliknij przycisk 'Change password' 5. Wpisz hasło do pierwszego pola do wprowadzenia danych 6. W przypadku pierwszego hasła należy wprowadzić poprawne dane. Dla drugiego wejścia uzupełnij poprawne dane, ale inne niż dla pierwszego wejścia. 7. Wypełnij oba wejścia poprawnym hasłem i kliknij przycisk 'Confirm password' OCZEKIWANY REZULTAT: 1. Pojawiła się strona inicjacji. 2. Tytuł jest widoczny. 3. Istnieje jedno pole do wprowadzenia danych dla użytkownika „Admin”. Istnieje drugie pole do potwierdzenia hasła dla użytkownika „Admin”. 4. Nie możemy zapisać hasła administratora z pustymi danymi wejściowymi. Pokazała się wskazówka sprawdzania poprawności informująca, że wymagane są hasła dla obu pól. 5. Możemy wprowadzić dane wejściowe. Wyświetla się podpowiedź walidacji przy wprowadzaniu haseł 6. Wyświetlił się komunikat walidacji sprawdzania poprawności, który informuje, że hasła nie są zgodne. 7. Hasło zostało zapisane. Przekierowano na stronę logowania. """ # step 1 assert initialization_page.driver.current_url == initialization_page.url # step 2 assert initialization_page.get_title() == initialization_page.title # step 3 assert initialization_page.password_input.is_element_visible() assert initialization_page.password_input.get_label() == 'Enter password of the “Admin” account' assert initialization_page.password_confirmation_input.is_element_visible() assert initialization_page.password_confirmation_input.get_label() == 'Confirm password of the “Admin” account' # step 4 initialization_page.change_password_button.click() assert initialization_page.password_input.get_validation() == 'Password is required' # step 5 for password in PASSWORD_VALIDATION: initialization_page.set_passwords(password, password) > assert initialization_page.password_input.get_validation() == PASSWORD_VALIDATION[password] E AssertionError: assert 'Password must have at least one special character' == 'Password must only contain alphanumerical characters' tests\Initialization_tests\E2E_tests\test_initialization_E2E.py:51: AssertionError -------------------------------Captured log setup------------------------------- 2021-12-13 23:52:06 - InitializationPage - INFO - Trying to find element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:06 - InitializationPage - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:07 - InitializationPage - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:07 - Button - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:07 - Button - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:07 - InitializationPage - INFO - Found element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:07 - Button - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:07 - Button - INFO - Element //button[@id='initialize-password_submit'] found." -------------------------------Captured log call-------------------------------- 2021-12-13 23:52:07 - InitializationPage - INFO - Trying to find element ('//h2', 'Base')" 2021-12-13 23:52:07 - InitializationPage - INFO - Waiting for element //h2 with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:07 - InitializationPage - INFO - Element //h2 found." 2021-12-13 23:52:07 - BaseElement - INFO - Waiting for element //h2 with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:07 - BaseElement - INFO - Element //h2 found." 2021-12-13 23:52:07 - InitializationPage - INFO - Found element ('//h2', 'Base')" 2021-12-13 23:52:07 - BaseElement - INFO - Trying to get text of element with xpath //h2" 2021-12-13 23:52:07 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:07 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:07 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:07 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:07 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:07 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:07 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:52:07 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:07 - Input - INFO - Element //span[@id='initialize-password_password'] was found." 2021-12-13 23:52:07 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:07 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:07 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:07 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:07 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:07 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:07 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:07 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"label")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:07 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"label")] found." 2021-12-13 23:52:07 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='initialize-password_password']/div[contains(@class,"label")]" 2021-12-13 23:52:07 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:07 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:07 - InitializationPage - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:07 - Input - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:07 - Input - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:07 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:07 - Input - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:52:07 - Input - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:07 - Input - INFO - Element //span[@id='initialize-password_password_confirmation'] was found." 2021-12-13 23:52:07 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:07 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:07 - InitializationPage - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:07 - Input - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:07 - Input - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:07 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:07 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password_confirmation']" 2021-12-13 23:52:08 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password_confirmation']/div[contains(@class,"label")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:08 - BaseElement - INFO - Element //span[@id='initialize-password_password_confirmation']/div[contains(@class,"label")] found." 2021-12-13 23:52:08 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='initialize-password_password_confirmation']/div[contains(@class,"label")]" 2021-12-13 23:52:08 - InitializationPage - INFO - Trying to find element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:08 - InitializationPage - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:08 - InitializationPage - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:08 - Button - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:08 - Button - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:08 - InitializationPage - INFO - Found element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:08 - Button - INFO - Trying to click element with xpath //button[@id='initialize-password_submit']" 2021-12-13 23:52:08 - Button - INFO - Element with xpath //button[@id='initialize-password_submit'] was clicked" 2021-12-13 23:52:08 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:08 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:08 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:08 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:08 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:08 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:08 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:08 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:08 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:08 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:52:08 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:08 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] was found." 2021-12-13 23:52:08 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='initialize-password_password']/div[contains(@class,"validation")]" 2021-12-13 23:52:08 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:08 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:08 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:08 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:08 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:08 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:08 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:08 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:08 - BaseElement - INFO - Element //span[@id='initialize-password_password']//input found." 2021-12-13 23:52:08 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:08 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:08 - InitializationPage - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:08 - Input - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:08 - Input - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:08 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:08 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password_confirmation']" 2021-12-13 23:52:08 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password_confirmation']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:08 - BaseElement - INFO - Element //span[@id='initialize-password_password_confirmation']//input found." 2021-12-13 23:52:08 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:08 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:08 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:08 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:08 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:08 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:08 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:08 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:08 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:08 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:52:08 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:08 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] was found." 2021-12-13 23:52:08 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='initialize-password_password']/div[contains(@class,"validation")]" 2021-12-13 23:52:08 - InitializationPage - INFO - Trying to find element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:08 - InitializationPage - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:08 - InitializationPage - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:08 - Button - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:08 - Button - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:08 - InitializationPage - INFO - Found element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:08 - Button - INFO - Trying to click element with xpath //button[@id='initialize-password_submit']" 2021-12-13 23:52:08 - Button - INFO - Element with xpath //button[@id='initialize-password_submit'] was clicked" 2021-12-13 23:52:08 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:08 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:08 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:08 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:08 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:08 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:08 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:08 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:08 - BaseElement - INFO - Element //span[@id='initialize-password_password']//input found." 2021-12-13 23:52:08 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:08 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:09 - InitializationPage - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:09 - Input - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - Input - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:09 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:09 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password_confirmation']" 2021-12-13 23:52:09 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password_confirmation']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - BaseElement - INFO - Element //span[@id='initialize-password_password_confirmation']//input found." 2021-12-13 23:52:09 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:09 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:09 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:09 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:09 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:09 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:09 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:09 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:52:09 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:09 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] was found." 2021-12-13 23:52:09 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='initialize-password_password']/div[contains(@class,"validation")]" 2021-12-13 23:52:09 - InitializationPage - INFO - Trying to find element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:09 - InitializationPage - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:09 - InitializationPage - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:09 - Button - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - Button - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:09 - InitializationPage - INFO - Found element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:09 - Button - INFO - Trying to click element with xpath //button[@id='initialize-password_submit']" 2021-12-13 23:52:09 - Button - INFO - Element with xpath //button[@id='initialize-password_submit'] was clicked" 2021-12-13 23:52:09 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:09 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:09 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:09 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:09 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:09 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:09 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - BaseElement - INFO - Element //span[@id='initialize-password_password']//input found." 2021-12-13 23:52:09 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:09 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:09 - InitializationPage - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:09 - Input - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - Input - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:09 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:09 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password_confirmation']" 2021-12-13 23:52:09 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password_confirmation']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - BaseElement - INFO - Element //span[@id='initialize-password_password_confirmation']//input found." 2021-12-13 23:52:09 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:09 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:09 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:09 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:09 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:09 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:09 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:09 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:52:09 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:09 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] was found." 2021-12-13 23:52:09 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='initialize-password_password']/div[contains(@class,"validation")]" 2021-12-13 23:52:09 - InitializationPage - INFO - Trying to find element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:09 - InitializationPage - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:09 - InitializationPage - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:09 - Button - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - Button - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:09 - InitializationPage - INFO - Found element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:09 - Button - INFO - Trying to click element with xpath //button[@id='initialize-password_submit']" 2021-12-13 23:52:09 - Button - INFO - Element with xpath //button[@id='initialize-password_submit'] was clicked" 2021-12-13 23:52:09 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:09 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:09 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:09 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:09 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:09 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:09 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:09 - BaseElement - INFO - Element //span[@id='initialize-password_password']//input found." 2021-12-13 23:52:10 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:10 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:10 - InitializationPage - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:10 - Input - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:10 - Input - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:10 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:10 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password_confirmation']" 2021-12-13 23:52:10 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password_confirmation']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:10 - BaseElement - INFO - Element //span[@id='initialize-password_password_confirmation']//input found." 2021-12-13 23:52:10 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:10 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:10 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:10 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:10 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:10 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:10 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:10 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:10 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:10 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:52:10 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:10 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] was found." 2021-12-13 23:52:10 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='initialize-password_password']/div[contains(@class,"validation")]" 2021-12-13 23:52:10 - InitializationPage - INFO - Trying to find element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:10 - InitializationPage - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:10 - InitializationPage - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:10 - Button - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:10 - Button - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:10 - InitializationPage - INFO - Found element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:10 - Button - INFO - Trying to click element with xpath //button[@id='initialize-password_submit']" 2021-12-13 23:52:10 - Button - INFO - Element with xpath //button[@id='initialize-password_submit'] was clicked" 2021-12-13 23:52:10 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:10 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:10 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:10 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:10 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:10 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:10 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:10 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:10 - BaseElement - INFO - Element //span[@id='initialize-password_password']//input found." 2021-12-13 23:52:10 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:10 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:10 - InitializationPage - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:10 - Input - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:10 - Input - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:10 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:10 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password_confirmation']" 2021-12-13 23:52:10 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password_confirmation']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:10 - BaseElement - INFO - Element //span[@id='initialize-password_password_confirmation']//input found." 2021-12-13 23:52:10 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:10 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:10 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:10 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:10 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:10 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:10 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:10 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:10 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:10 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:52:10 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:10 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] was found." 2021-12-13 23:52:10 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='initialize-password_password']/div[contains(@class,"validation")]" 2021-12-13 23:52:10 - InitializationPage - INFO - Trying to find element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:10 - InitializationPage - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:10 - InitializationPage - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:10 - Button - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:10 - Button - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:52:10 - InitializationPage - INFO - Found element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:52:10 - Button - INFO - Trying to click element with xpath //button[@id='initialize-password_submit']" 2021-12-13 23:52:10 - Button - INFO - Element with xpath //button[@id='initialize-password_submit'] was clicked" 2021-12-13 23:52:10 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:10 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:10 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:11 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:11 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:11 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:11 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:11 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:11 - BaseElement - INFO - Element //span[@id='initialize-password_password']//input found." 2021-12-13 23:52:11 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:11 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:11 - InitializationPage - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:11 - Input - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:11 - Input - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:52:11 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:52:11 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password_confirmation']" 2021-12-13 23:52:11 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password_confirmation']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:11 - BaseElement - INFO - Element //span[@id='initialize-password_password_confirmation']//input found." 2021-12-13 23:52:11 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:11 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:11 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:11 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:11 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:52:11 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:52:11 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:52:11 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:11 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:11 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:52:11 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] found." 2021-12-13 23:52:11 - BaseElement - INFO - Element //span[@id='initialize-password_password']/div[contains(@class,"validation")] was found." 2021-12-13 23:52:11 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='initialize-password_password']/div[contains(@class,"validation")]" -----------------------------Captured log teardown------------------------------ 2021-12-13 23:52:11 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_inicjacja_zakonczona_sukcesem.png" | |||
| Failed | tests/Login_tests/E2E_test/test_login_E2E.py::test_pierwsze_logowanie_administratora | 26.66 | |
|
setup_admin_password = None login_page = <frontend.objects.Pages.login_page.LoginPage object at 0x000002744B5CFDC0> browser = <selenium.webdriver.chrome.webdriver.WebDriver (session="d0c7dfc8730f2b6d8087f2072c69a499")> @pytest.mark.order(2) def test_pierwsze_logowanie_administratora(setup_admin_password, login_page, browser): """ Pierwsze logowanie administratora. Druga część inicjacji, gdzie potwierdza się zgody użytkownika i wpisuje dane użytkownika 'Admin'. WARUNKI WSTĘPNE: - Ustawiono hasło dla użytkownika 'Admin' (zależne od test_inicjacja_zakonczona_sukcesem) OPIS KROKU: 1. Przejdź do aplikacji wpisując adres IP urządzenia brzegowego w pole adresu przeglądarki. 2. Wpisz poprawne hasło i użytkownika, wybierz narzędzie jako 'Configuration'. 3. Sprawdź zawartość panelu 4. Kliknij przycisk 'Decline' 5. Zaloguj się ponownie. Wpisz poprawne hasło i użytkownika, wybierz narzędzie jako 'Configuration'. 6. Kliknij na 'ABB Ability Marketplace - Privacy policy' 7. Wróć do aplikacji. Przesuń na sam dół tekst 'Terms & Conditions' i 'Privacy policy' 8. Zaznacz pola 'I accept the Terms & Conditions' i 'I accept the Privacy policy' 9. Kliknij przycisk 'Accept' 10. Kliknij przycisk 'Save' 11. Sprawdź czy są dostępne wymagane pola 12. Wpisz dane w każde z pól 13. Wpisz poprawne dane dla każdego z pól i kliknij przycisk Save OCZEKIWANY REZULTAT: 1. Panel logowania został wyświetlony. 2. Przekierowano do panelu zatwierdzania Zasad i warunków, a także polityki prywatności. 3. Wyświetlone są dwa przewijane teksty: Terms & Conditions i Privacy policy. Wyświetlone są dwa pola wyboru i przycisk 'Accept', które nie są dostępne i przycisk 'Decline', \ który jest dostępny. 4. Przekierowano na stronę logowania. 5. Przekierowano do panelu zatwierdzania Zasad i warunków, a także polityki prywatności. 6. Przekierowano na stronę z polityką prywatności ABB Ability Marketplace 7. Po przesunięciu tekstu 'Terms & Conditions' na sam koniec pole wyboru 'I accept the Terms & Conditions' stało się dostępne. Po przesunięciu tekstu 'Privacy policy' na sam koniec pole wyboru 'I accept the Privacy policy' stało się dostępne. 8. Przycisk 'Accept' stał się dostępny 9. Przekierowano do panelu inicjacji danych użytkownika. 10. Zapisanie danych nie jest możliwe. Wyświetlono komunikaty z informacją, że należy wypełnić każde z pól. 11. Pola są dostępne. 12. Poprawnie wpisano dane dla pól: First name, Last name, Company. Dla pozostałych pól wyświetlono komunikaty z informacją na temat walidacji: Dla pola Initials można wpisać maksymalnie 3 znaki, Dla pola E-mail wpisano niepoprawne dane, Dla pola Phone wpisano niepoprawne dane 13. Dane zostały poprawnie zapisane. Przekierowano na stronę główną aplikacji, gdzie wszystkie pola są wyszarzone oprócz My Property i Edge Device Configuration. """ # Preconditions # Step 1 assert login_page.driver.current_url == login_page.url # Step 2 login_page.set_username('Admin') login_page.set_password('Smartspaces1!') login_page.choose_mode('Configuration') login_page.click_login() terms_page = TermsAndConditionsPage(browser) terms_page.wait_for_loading_indicator() assert terms_page.driver.current_url == terms_page.url # Step 3 assert terms_page.terms_condition_textbox.is_element_visible() assert terms_page.privacy_policy_textbox.is_element_visible() assert terms_page.terms_condition_checkbox.is_active() is False assert terms_page.privacy_policy_checkbox.is_active() is False assert terms_page.save_button.is_active() is False assert terms_page.cancel_button.is_active() # Step 4 terms_page.cancel_button.click() # Step 5 login_page.set_username('Admin') login_page.set_password('Smartspaces1!') login_page.choose_mode('Configuration') login_page.click_login() terms_page.wait_for_loading_indicator() assert terms_page.driver.current_url == terms_page.url # Step 6 terms_page.click_download_policy_privacy() # bug - element is not clickable > terms_page.driver.switch_to.window(terms_page.driver.window_handles[1]) E IndexError: list index out of range tests\Login_tests\E2E_test\test_login_E2E.py:88: IndexError -------------------------------Captured log setup------------------------------- 2021-12-13 23:52:17 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:52:17 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:18 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:52:18 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:18 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:52:18 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:52:18 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-13 23:52:18 - Button - INFO - Element //button[@id='login-screen_login'] found." -------------------------------Captured log call-------------------------------- 2021-12-13 23:52:18 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:52:18 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:18 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:52:18 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:18 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:52:18 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:52:18 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-13 23:52:18 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:18 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-13 23:52:18 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:52:18 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:18 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:52:18 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:18 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:52:18 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:52:18 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:52:18 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:18 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-13 23:52:18 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:52:18 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:18 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:52:18 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:18 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:52:18 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:52:18 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-13 23:52:18 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-13 23:52:18 - TermsAndConditionsPage - INFO - Trying to find element ("//div[@id='terms-and-conditions-textbox']", 'Base')" 2021-12-13 23:52:18 - TermsAndConditionsPage - INFO - Waiting for element //div[@id='terms-and-conditions-textbox'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:21 - TermsAndConditionsPage - INFO - Element //div[@id='terms-and-conditions-textbox'] found." 2021-12-13 23:52:21 - BaseElement - INFO - Waiting for element //div[@id='terms-and-conditions-textbox'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:21 - BaseElement - INFO - Element //div[@id='terms-and-conditions-textbox'] found." 2021-12-13 23:52:21 - TermsAndConditionsPage - INFO - Found element ("//div[@id='terms-and-conditions-textbox']", 'Base')" 2021-12-13 23:52:21 - BaseElement - INFO - Waiting for element //div[@id='terms-and-conditions-textbox'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:21 - BaseElement - INFO - Element //div[@id='terms-and-conditions-textbox'] found." 2021-12-13 23:52:21 - TermsAndConditionsPage - INFO - Trying to find element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-13 23:52:21 - TermsAndConditionsPage - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Trying to find element ("//div[@id='terms-and-conditions-textbox']", 'Base')" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Waiting for element //div[@id='terms-and-conditions-textbox'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Element //div[@id='terms-and-conditions-textbox'] found." 2021-12-13 23:52:36 - BaseElement - INFO - Waiting for element //div[@id='terms-and-conditions-textbox'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:36 - BaseElement - INFO - Element //div[@id='terms-and-conditions-textbox'] found." 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Found element ("//div[@id='terms-and-conditions-textbox']", 'Base')" 2021-12-13 23:52:36 - BaseElement - INFO - Waiting for element //div[@id='terms-and-conditions-textbox'] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:52:36 - BaseElement - INFO - Element //div[@id='terms-and-conditions-textbox'] found." 2021-12-13 23:52:36 - BaseElement - INFO - Element //div[@id='terms-and-conditions-textbox'] was found." 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Trying to find element ("//div[@id='privacy-policy-textbox']", 'Base')" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Waiting for element //div[@id='privacy-policy-textbox'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Element //div[@id='privacy-policy-textbox'] found." 2021-12-13 23:52:36 - BaseElement - INFO - Waiting for element //div[@id='privacy-policy-textbox'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:36 - BaseElement - INFO - Element //div[@id='privacy-policy-textbox'] found." 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Found element ("//div[@id='privacy-policy-textbox']", 'Base')" 2021-12-13 23:52:36 - BaseElement - INFO - Waiting for element //div[@id='privacy-policy-textbox'] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:52:36 - BaseElement - INFO - Element //div[@id='privacy-policy-textbox'] found." 2021-12-13 23:52:36 - BaseElement - INFO - Element //div[@id='privacy-policy-textbox'] was found." 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Trying to find element ("//input[@id='terms-and-conditions-checkbox']", 'Base')" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Waiting for element //input[@id='terms-and-conditions-checkbox'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Element //input[@id='terms-and-conditions-checkbox'] found." 2021-12-13 23:52:36 - BaseElement - INFO - Waiting for element //input[@id='terms-and-conditions-checkbox'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:36 - BaseElement - INFO - Element //input[@id='terms-and-conditions-checkbox'] found." 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Found element ("//input[@id='terms-and-conditions-checkbox']", 'Base')" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Trying to find element ("//input[@id='policy-checkbox']", 'Base')" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Waiting for element //input[@id='policy-checkbox'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Element //input[@id='policy-checkbox'] found." 2021-12-13 23:52:36 - BaseElement - INFO - Waiting for element //input[@id='policy-checkbox'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:36 - BaseElement - INFO - Element //input[@id='policy-checkbox'] found." 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Found element ("//input[@id='policy-checkbox']", 'Base')" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Trying to find element ('//*[@id="terms-and-conditions-accept-button"]', 'Button')" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Waiting for element //*[@id="terms-and-conditions-accept-button"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Element //*[@id="terms-and-conditions-accept-button"] found." 2021-12-13 23:52:36 - Button - INFO - Waiting for element //*[@id="terms-and-conditions-accept-button"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:36 - Button - INFO - Element //*[@id="terms-and-conditions-accept-button"] found." 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Found element ('//*[@id="terms-and-conditions-accept-button"]', 'Button')" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Trying to find element ('//*[@id="terms-and-conditions-decline-button"]', 'Button')" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Waiting for element //*[@id="terms-and-conditions-decline-button"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Element //*[@id="terms-and-conditions-decline-button"] found." 2021-12-13 23:52:36 - Button - INFO - Waiting for element //*[@id="terms-and-conditions-decline-button"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:36 - Button - INFO - Element //*[@id="terms-and-conditions-decline-button"] found." 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Found element ('//*[@id="terms-and-conditions-decline-button"]', 'Button')" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Trying to find element ('//*[@id="terms-and-conditions-decline-button"]', 'Button')" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Waiting for element //*[@id="terms-and-conditions-decline-button"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Element //*[@id="terms-and-conditions-decline-button"] found." 2021-12-13 23:52:36 - Button - INFO - Waiting for element //*[@id="terms-and-conditions-decline-button"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:36 - Button - INFO - Element //*[@id="terms-and-conditions-decline-button"] found." 2021-12-13 23:52:36 - TermsAndConditionsPage - INFO - Found element ('//*[@id="terms-and-conditions-decline-button"]', 'Button')" 2021-12-13 23:52:36 - Button - INFO - Trying to click element with xpath //*[@id="terms-and-conditions-decline-button"]" 2021-12-13 23:52:36 - Button - INFO - Element with xpath //*[@id="terms-and-conditions-decline-button"] was clicked" 2021-12-13 23:52:36 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:52:36 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:37 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:52:37 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:37 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:52:37 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:52:37 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-13 23:52:37 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:37 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-13 23:52:37 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:52:37 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:37 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:52:37 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:37 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:52:37 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:52:37 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:52:37 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:37 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-13 23:52:37 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:52:37 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:37 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:52:37 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:37 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:52:37 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:52:37 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-13 23:52:37 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-13 23:52:37 - TermsAndConditionsPage - INFO - Trying to find element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-13 23:52:37 - TermsAndConditionsPage - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:37 - TermsAndConditionsPage - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:52:37 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:37 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:52:37 - TermsAndConditionsPage - INFO - Found element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-13 23:52:37 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.5s and timeout 5s" 2021-12-13 23:52:37 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:52:37 - TermsAndConditionsPage - INFO - Trying to find element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-13 23:52:37 - TermsAndConditionsPage - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:37 - TermsAndConditionsPage - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:52:37 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:37 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:52:37 - TermsAndConditionsPage - INFO - Found element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-13 23:52:37 - BaseElement - INFO - Waiting for element to disappear //div[contains(@class,'LoadingIndicator')] with poll frequency 0.5 and timeout 15" 2021-12-13 23:52:38 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] disappeared." 2021-12-13 23:52:38 - TermsAndConditionsPage - INFO - Trying to find element ("//*[text()='ABB Ability™ Marketplace - Policy privacy']", 'Button')" 2021-12-13 23:52:38 - TermsAndConditionsPage - INFO - Waiting for element //*[text()='ABB Ability™ Marketplace - Policy privacy'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:52:38 - TermsAndConditionsPage - INFO - Element //*[text()='ABB Ability™ Marketplace - Policy privacy'] found." 2021-12-13 23:52:38 - Button - INFO - Waiting for element //*[text()='ABB Ability™ Marketplace - Policy privacy'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:52:38 - Button - INFO - Element //*[text()='ABB Ability™ Marketplace - Policy privacy'] found." 2021-12-13 23:52:38 - TermsAndConditionsPage - INFO - Found element ("//*[text()='ABB Ability™ Marketplace - Policy privacy']", 'Button')" 2021-12-13 23:52:38 - Button - INFO - Trying to click element with xpath //*[text()='ABB Ability™ Marketplace - Policy privacy']" 2021-12-13 23:52:38 - Button - INFO - Element with xpath //*[text()='ABB Ability™ Marketplace - Policy privacy'] was clicked" -----------------------------Captured log teardown------------------------------ 2021-12-13 23:52:38 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_pierwsze_logowanie_administratora.png" | |||
| Failed | tests/Login_tests/E2E_test/test_login_E2E.py::test_pierwsze_logowanie_dla_uzytkownikow_innych_niz_admin | 37.67 | |
|
setup_admin_user = None, setup_building = None, setup_another_user = None login_page = <frontend.objects.Pages.login_page.LoginPage object at 0x000002744B50D8B0> login_api = <backend.login_api.LoginAPI object at 0x000002744B50D070> my_property_api = <backend.my_property_api.MyPropertyAPI object at 0x000002744B50D5B0> browser = <selenium.webdriver.chrome.webdriver.WebDriver (session="6ab42f3e1fa4796bcfe3e804546e0dff")> @pytest.mark.order(3) def test_pierwsze_logowanie_dla_uzytkownikow_innych_niz_admin(setup_admin_user, setup_building, setup_another_user, login_page, login_api, my_property_api, browser): """ Pierwsze logowanie dla użytkowników innych niż 'Admin' WARUNKI WSTĘPNE: - Admin jest zainicjowany - Budynek jest zainicjowany - Użytkownik inny niż Admin jest stworzony OPIS KROKU: 1. Przejdź do aplikacji wpisując adres IP urządzenia brzegowego w pole adresu przeglądarki. 2. Zaloguj się po raz pierwszy jako nowy użytkownik, wybierz narzędzie jako 'Configuration' 3. Przesuń na sam dół tekst 'Terms & Conditions' i 'Privacy policy' 4. Zaznacz pola 'I accept the Terms & Conditions' i 'I accept the Privacy policy' 5. Kliknij przycisk 'Accept' 6. Kliknij przycisk 'Save' 7. Sprawdź czy są dostępne wymagane pola 8. Wpisz dane dla każdego z pól i kliknij przycisk Save 9. Wpisz dane dla każdego z pól i kliknij przycisk Save 10. Wpisz dane dla każdego z pól i kliknij przycisk Save 11. Wpisz poprawne dane dla każdego z pól i kliknij przycisk Save OCZEKIWANY REZULTAT: 1. Panel logowania został wyświetlony. 2. Przekierowano do panelu zatwierdzania Zasad i warunków, a także polityki prywatności. 3. Po przesunięciu tekstu 'Terms & Conditions' na sam koniec pole wyboru 'I accept the Terms & Conditions' stało się dostępne. Po przesunięciu tekstu 'Privacy policy' na sam koniec pole wyboru 'I accept the Privacy policy' stało się dostępne. 4. Przycisk 'Accept' stał się dostępny 5. Przekierowano do panelu inicjacji danych użytkownika. 6. Zapisanie danych nie jest możliwe. Wyświetlono komunikaty z informacją, że należy wypełnić każde z pól. 7. Pola są dostępne. 8. Możemy wprowadzić dane wejściowe. Zapisanie danych się nie powiodło. Wyświetla się podpowiedź walidacji przy wprowadzaniu hasła 9. Możemy wprowadzić dane wejściowe. Zapisanie danych się nie powiodło. Wyświetla się podpowiedź walidacji przy wprowadzaniu hasła informująca, że:Hasło musi być inne od obecnego hasła 10. Możemy wprowadzić dane wejściowe. Zapisanie danych się nie powiodło. Wyświetla się podpowiedź walidacji przy wprowadzaniu hasła informująca, że: Pole Confirm new password różni się od hasła wpisanego w pole 'Enter new password' 11. Dane zostały poprawnie zapisane. Przekierowano na stronę główną aplikacji, gdzie wszystkie pola są dostępne. """ # Preconditions done as fixtures # Step 1 assert login_page.driver.current_url == login_page.url # Step 2 login_page.set_username('User') login_page.set_password('Smartspaces2!') login_page.choose_mode('Configuration') login_page.click_login() > terms_page = TermsAndConditionsPage(browser) # bug - for user there are not displayed terms and acc data tests\Login_tests\E2E_test\test_login_E2E.py:195: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ frontend\objects\Pages\terms_and_conditions_page.py:16: in __init__ self.get_element(TermsAndConditionsLocators.terms_condition_textbox).wait_for_element() frontend\element_creation.py:62: in get_element self.__wait_for_element(locator[0], timeout=timeout) frontend\element_creation.py:33: in __wait_for_element WebDriverWait(self.driver, timeout, poll_frequency).until( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.support.wait.WebDriverWait (session="6ab42f3e1fa4796bcfe3e804546e0dff")> method = <selenium.webdriver.support.expected_conditions.visibility_of_element_located object at 0x000002744B5CF700> message = 'Element not found in 15s. Check correctness of the xpath provided or extend timeout.' def until(self, method, message=''): """Calls the method provided with the driver as an argument until the \ return value is not False.""" screen = None stacktrace = None end_time = time.time() + self._timeout while True: try: value = method(self._driver) if value: return value except self._ignored_exceptions as exc: screen = getattr(exc, 'screen', None) stacktrace = getattr(exc, 'stacktrace', None) time.sleep(self._poll) if time.time() > end_time: break > raise TimeoutException(message, screen, stacktrace) E selenium.common.exceptions.TimeoutException: Message: Element not found in 15s. Check correctness of the xpath provided or extend timeout. C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\support\wait.py:80: TimeoutException -------------------------------Captured log setup------------------------------- 2021-12-13 23:53:00 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:53:00 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:00 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:53:00 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:00 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:53:00 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:53:00 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-13 23:53:00 - Button - INFO - Element //button[@id='login-screen_login'] found." -------------------------------Captured log call-------------------------------- 2021-12-13 23:53:00 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:53:00 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:00 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:53:00 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:00 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:53:00 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:53:00 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-13 23:53:00 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:00 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-13 23:53:00 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:53:00 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:00 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:53:00 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:00 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:53:00 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:53:00 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:53:00 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:00 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-13 23:53:00 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:53:00 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:00 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:53:00 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:00 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:53:00 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:53:00 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-13 23:53:01 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-13 23:53:01 - TermsAndConditionsPage - INFO - Trying to find element ("//div[@id='terms-and-conditions-textbox']", 'Base')" 2021-12-13 23:53:01 - TermsAndConditionsPage - INFO - Waiting for element //div[@id='terms-and-conditions-textbox'] with poll frequency 0.1s and timeout 15s" -----------------------------Captured log teardown------------------------------ 2021-12-13 23:53:16 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_pierwsze_logowanie_dla_uzytkownikow_innych_niz_admin.png" | |||
| Failed | tests/Asset_Template_tests/E2E_tests/test_create_asset_templates.py::test_stworz_asset_template_z_datapointami_i_properties | 52.34 | |
|
asset_templates_page = <frontend.objects.Pages.asset_templates_page.AssetTemplatesPage object at 0x000002744B5D6130> @pytest.mark.order(4) def test_stworz_asset_template_z_datapointami_i_properties(asset_templates_page): """ Testuje stworzenie asset template wraz z stworzeniem różnego typu datapointów i properties WARUNKI WSTĘPNE: - Użytkownik Admin jest zalogowany - Budynek jest dodany OPIS KROKU: 1. Przejdź do widżetu 'Asset templates' 2. Dla zakładki 'Sensors' dla tabeli 'Sensors' kliknij przycisk 'Add template' 3. Uzupełnij nazwę, typ, tag i ikonę wraz z tłem dla Assetu 4. Kliknij przycisk 'Save' 5. Kliknij na ikonkę edycji przy nowo powstałym Assecie 6. Ustaw 'Master/Slave support in a space' i kliknij ikonkę 'Save' 7. Przejdź do zakładki 'Points' i kliknij 'Add datapoint' 8. Wybierz opcję 'Custom' i dodaj nazwę, typ, format, jednostkę, wartość minimalną, maksymalną, jednostkę wyświetlaną i tag 9. Kliknij przycisk 'Save' 10. Powtórz kroki 7-9 dla kolejnych typów datapointów 11. Powtórz kroki 7-9 dla properties z zakładki 'Properties' OCZEKIWANY REZULTAT: 1. Strona 'Asset templates' została wyświetlona 2. Okno dialogowe dla dodania assetu zostało wyświetlone 3. Wszystkie dane zostały poprawnie wprowadzone 4. Nowy Asset template został wyświetlony w tabeli 'Sensors' z danymi dodanymi w oknie dialogowym 5. W zakładce 'General' pojwiły się dane asset template'u z możliwością ich edycji (oprócz Quntity of instances) 6. Dane zostały zapisane 7. Okno dialogowe dla dodania Datapointów 8. Dane zostały poprawnie ustawione 9. Okno dialogowe zostało zamknięte a datapoint jest widoczny a zakładce 'Points' z nazwą i typem, możliwością edycji i usunięcia 10. Datapointy zostały dodane i są wyświetlane w zakładce 'Points' 11. Properties zostały dodane i są wyświetlane w zakładce 'Properties' z możliwością edycji i ich usunięcia z nazwą i wartością początkową """ # step 1 asset_templates_page.open_tab('Sensors') # step 2 add_template_modal = asset_templates_page.click_add_button('Sensors') # step 3 template_name = f'{create_random_string(5)} {create_random_string(5)}' template_type = 'UV Sensor' add_template_modal.set_template_name(template_name) add_template_modal.set_template_type(template_type) add_template_modal.tags.set_new_tag('ABC') all_tags = add_template_modal.tags.get_tags() add_template_modal.icons.set_icon(randint(1, 826)) color_set = (randint(0, 255), randint(0, 255), randint(0, 255)) add_template_modal.icons.set_background(color_type='rgb', color=color_set) background_color = add_template_modal.icons.get_background_color() assert color_set == background_color # step 4 add_template_modal.save() template_table = asset_templates_page.template_table(table_name='Sensors').get_table(unique_column_name='TEMPLATE NAME') assert template_table[template_name]['TEMPLATE NAME'] == template_name assert template_table[template_name]['TYPE'] == template_type assert template_table[template_name]['INSTANCES'] == '0' # step 5 asset_templates_page.template_table('Sensors').edit_row(unique_column_name='TEMPLATE NAME', row_name=template_name) # step 6 asset_templates_page.set_master_slave() asset_templates_page.save() assert asset_templates_page.template_tags.get_tags() == all_tags # step 7 & 8 & 9 & 10 asset_templates_page.open_tab('Points') data: dict = {} for point_format in ['Float', 'Integer', 'Boolean', 'Enum']: data[point_format] = {'format': point_format, 'name': f'{point_format}', 'type': 'Command And Feedback', 'tag': f'{create_random_string(5)}'} datapoint_modal = asset_templates_page.click_add_datapoint() # noinspection DuplicatedCode datapoint_modal.click_custom_datapoint() datapoint_modal.set_name(data[point_format]['name']) datapoint_modal.set_type(data[point_format]['type']) datapoint_modal.set_format(data[point_format]['format']) if point_format == 'Integer' or point_format == 'Float': data[point_format]['unit'] = 'Degrees - deg' data[point_format]['display_unit'] = 'Radians - rad' data[point_format]['min_value'] = 0 data[point_format]['max_value'] = 100000 datapoint_modal.set_unit(data[point_format]['unit']) datapoint_modal.set_min_value(data[point_format]['min_value']) datapoint_modal.set_max_value(data[point_format]['max_value']) datapoint_modal.set_display_unit(data[point_format]['display_unit']) datapoint_modal.tags.set_new_tag(data[point_format]['tag']) datapoint_modal.save() datapoints_table = asset_templates_page.points_properties_table.get_table(unique_column_name='POINT') for point_format in ['Float', 'Integer', 'Boolean', 'Enum']: > assert datapoints_table[point_format]['POINT'] == data[point_format]['format'] # bug - there is possibility to click save enum without enumartion E KeyError: 'Enum' tests\Asset_Template_tests\E2E_tests\test_create_asset_templates.py:102: KeyError -------------------------------Captured log setup------------------------------- 2021-12-13 23:53:21 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:53:21 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:21 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:53:21 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:21 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:53:21 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:53:21 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-13 23:53:21 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:53:21 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:53:21 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:21 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:53:21 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:21 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:53:21 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:53:21 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-13 23:53:21 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:21 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-13 23:53:22 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:53:22 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:22 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:53:22 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:22 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:53:22 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:53:22 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:53:22 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:22 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-13 23:53:22 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:53:22 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:22 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:53:22 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:22 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:53:22 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:53:22 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-13 23:53:22 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-13 23:53:22 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-13 23:53:22 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:23 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-13 23:53:23 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:23 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-13 23:53:23 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-13 23:53:23 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:23 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-13 23:53:23 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_myfunctions"]', 'Base')" 2021-12-13 23:53:23 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_myfunctions"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:23 - MenuPage - INFO - Element //*[@id="widget-carousel_myfunctions"] found." 2021-12-13 23:53:23 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_myfunctions"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:23 - BaseElement - INFO - Element //*[@id="widget-carousel_myfunctions"] found." 2021-12-13 23:53:23 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_myfunctions"]', 'Base')" 2021-12-13 23:53:23 - BaseElement - INFO - Trying to click element with xpath //*[@id="widget-carousel_myfunctions"]" 2021-12-13 23:53:23 - BaseElement - INFO - Element with xpath //*[@id="widget-carousel_myfunctions"] was clicked" 2021-12-13 23:53:23 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Central']/ancestor::span//button", 'Button')" 2021-12-13 23:53:23 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Element //*[text()='Central']/ancestor::span//button found." 2021-12-13 23:53:28 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:28 - Button - INFO - Element //*[text()='Central']/ancestor::span//button found." 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Found element ("//*[text()='Central']/ancestor::span//button", 'Button')" 2021-12-13 23:53:28 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:28 - Button - INFO - Element //*[text()='Central']/ancestor::span//button found." -------------------------------Captured log call-------------------------------- 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Trying to find element ("//a[text()='Sensors']//ancestor::li", 'Base')" 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Waiting for element //a[text()='Sensors']//ancestor::li with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Element //a[text()='Sensors']//ancestor::li found." 2021-12-13 23:53:28 - BaseElement - INFO - Waiting for element //a[text()='Sensors']//ancestor::li with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:28 - BaseElement - INFO - Element //a[text()='Sensors']//ancestor::li found." 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Found element ("//a[text()='Sensors']//ancestor::li", 'Base')" 2021-12-13 23:53:28 - BaseElement - INFO - Trying to click element with xpath //a[text()='Sensors']//ancestor::li" 2021-12-13 23:53:28 - BaseElement - INFO - Element with xpath //a[text()='Sensors']//ancestor::li was clicked" 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Sensors']/ancestor::span//button", 'Button')" 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Sensors']/ancestor::span//button with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Element //*[text()='Sensors']/ancestor::span//button found." 2021-12-13 23:53:28 - Button - INFO - Waiting for element //*[text()='Sensors']/ancestor::span//button with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:28 - Button - INFO - Element //*[text()='Sensors']/ancestor::span//button found." 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Found element ("//*[text()='Sensors']/ancestor::span//button", 'Button')" 2021-12-13 23:53:28 - Button - INFO - Waiting for element //*[text()='Sensors']/ancestor::span//button with poll frequency 0.1s and timeout 1s" 2021-12-13 23:53:28 - Button - INFO - Element //*[text()='Sensors']/ancestor::span//button found." 2021-12-13 23:53:28 - Button - INFO - Element //*[text()='Sensors']/ancestor::span//button was found." 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Trying to format the element ("//*[text()='{}']/ancestor::span//button", 'Button') with data ('Sensors',)" 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Sensors']/ancestor::span//button", 'Button')" 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Sensors']/ancestor::span//button with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Element //*[text()='Sensors']/ancestor::span//button found." 2021-12-13 23:53:28 - Button - INFO - Waiting for element //*[text()='Sensors']/ancestor::span//button with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:28 - Button - INFO - Element //*[text()='Sensors']/ancestor::span//button found." 2021-12-13 23:53:28 - AssetTemplatesPage - INFO - Found element ("//*[text()='Sensors']/ancestor::span//button", 'Button')" 2021-12-13 23:53:28 - Button - INFO - Trying to click element with xpath //*[text()='Sensors']/ancestor::span//button" 2021-12-13 23:53:28 - Button - INFO - Element with xpath //*[text()='Sensors']/ancestor::span//button was clicked" 2021-12-13 23:53:28 - AddAssetTemplateModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-13 23:53:28 - AddAssetTemplateModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:28 - AddAssetTemplateModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:53:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:53:28 - AddAssetTemplateModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-13 23:53:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:53:28 - AddAssetTemplateModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-13 23:53:28 - AddAssetTemplateModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:28 - AddAssetTemplateModal - INFO - Element //*[@id='name'] found." 2021-12-13 23:53:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-13 23:53:28 - AddAssetTemplateModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-13 23:53:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-13 23:53:28 - AddAssetTemplateModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-13 23:53:28 - AddAssetTemplateModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:28 - AddAssetTemplateModal - INFO - Element //*[@id='name'] found." 2021-12-13 23:53:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-13 23:53:28 - AddAssetTemplateModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-13 23:53:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-13 23:53:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-13 23:53:29 - AddAssetTemplateModal - INFO - Trying to find element ("//*[@id='blockType']", 'Dropdown')" 2021-12-13 23:53:29 - AddAssetTemplateModal - INFO - Waiting for element //*[@id='blockType'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:29 - AddAssetTemplateModal - INFO - Element //*[@id='blockType'] found." 2021-12-13 23:53:29 - Dropdown - INFO - Waiting for element //*[@id='blockType'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:29 - Dropdown - INFO - Element //*[@id='blockType'] found." 2021-12-13 23:53:29 - AddAssetTemplateModal - INFO - Found element ("//*[@id='blockType']", 'Dropdown')" 2021-12-13 23:53:29 - Dropdown - INFO - Trying to click element with xpath //*[@id='blockType']" 2021-12-13 23:53:29 - Dropdown - INFO - Element with xpath //*[@id='blockType'] was clicked" 2021-12-13 23:53:29 - Dropdown - INFO - Trying to get base element with xpath //*[@id='blockType']" 2021-12-13 23:53:29 - BaseElement - INFO - Waiting for element //span[text()="UV Sensor"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:29 - BaseElement - INFO - Element //span[text()="UV Sensor"]/.. found." 2021-12-13 23:53:29 - BaseElement - INFO - Trying to click element with xpath //span[text()="UV Sensor"]/.." 2021-12-13 23:53:29 - BaseElement - INFO - Element with xpath //span[text()="UV Sensor"]/.. was clicked" 2021-12-13 23:53:29 - AddAssetTemplateModal - INFO - Trying to find component ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]", 'Tags')" 2021-12-13 23:53:29 - AddAssetTemplateModal - INFO - Found component ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]", 'Tags')" 2021-12-13 23:53:29 - Tags - INFO - Trying to find element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]", 'Input')" 2021-12-13 23:53:29 - Tags - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:29 - Tags - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8] found." 2021-12-13 23:53:29 - Input - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:29 - Input - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8] found." 2021-12-13 23:53:29 - Tags - INFO - Found element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]", 'Input')" 2021-12-13 23:53:29 - Input - INFO - Trying to get base element with xpath (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]" 2021-12-13 23:53:29 - BaseElement - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:29 - BaseElement - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]//input found." 2021-12-13 23:53:29 - Tags - INFO - Trying to find element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]//button", 'Button')" 2021-12-13 23:53:29 - Tags - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]//button with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:29 - Tags - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]//button found." 2021-12-13 23:53:29 - Button - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]//button with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:29 - Button - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]//button found." 2021-12-13 23:53:29 - Tags - INFO - Found element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]//button", 'Button')" 2021-12-13 23:53:29 - Button - INFO - Trying to click element with xpath (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]//button" 2021-12-13 23:53:29 - Button - INFO - Element with xpath (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]//button was clicked" 2021-12-13 23:53:29 - AddAssetTemplateModal - INFO - Trying to find component ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]", 'Tags')" 2021-12-13 23:53:29 - AddAssetTemplateModal - INFO - Found component ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[8]", 'Tags')" 2021-12-13 23:53:29 - AddAssetTemplateModal - INFO - Trying to find component ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]", 'Icons')" 2021-12-13 23:53:29 - AddAssetTemplateModal - INFO - Found component ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]", 'Icons')" 2021-12-13 23:53:29 - Icons - INFO - Trying to find element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']", 'Button')" 2021-12-13 23:53:29 - Icons - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:30 - Icons - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol'] found." 2021-12-13 23:53:30 - Button - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:30 - Button - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol'] found." 2021-12-13 23:53:30 - Icons - INFO - Found element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']", 'Button')" 2021-12-13 23:53:30 - Button - INFO - Trying to click element with xpath (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']" 2021-12-13 23:53:30 - Button - INFO - Element with xpath (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol'] was clicked" 2021-12-13 23:53:30 - Icons - INFO - Trying to find element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div", 'Button')" 2021-12-13 23:53:30 - Icons - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:30 - Icons - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div found." 2021-12-13 23:53:30 - Button - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:30 - Button - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div found." 2021-12-13 23:53:30 - Icons - INFO - Found element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div", 'Button')" 2021-12-13 23:53:30 - Button - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:30 - Button - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div found." 2021-12-13 23:53:30 - Icons - INFO - Trying to find element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div/div/div[2]/div[60]", 'Button')" 2021-12-13 23:53:30 - Icons - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div/div/div[2]/div[60] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:30 - Icons - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div/div/div[2]/div[60] found." 2021-12-13 23:53:30 - Button - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div/div/div[2]/div[60] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:30 - Button - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div/div/div[2]/div[60] found." 2021-12-13 23:53:30 - Icons - INFO - Found element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div/div/div[2]/div[60]", 'Button')" 2021-12-13 23:53:30 - Button - INFO - Trying to click element with xpath (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div/div/div[2]/div[60]" 2021-12-13 23:53:30 - Button - INFO - Element with xpath (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick or import a symbol']/div/div/div[2]/div[60] was clicked" 2021-12-13 23:53:30 - AddAssetTemplateModal - INFO - Trying to find component ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]", 'Icons')" 2021-12-13 23:53:30 - AddAssetTemplateModal - INFO - Found component ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]", 'Icons')" 2021-12-13 23:53:30 - Icons - INFO - Trying to find element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']", 'Button')" 2021-12-13 23:53:30 - Icons - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:30 - Icons - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color'] found." 2021-12-13 23:53:30 - Button - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:30 - Button - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color'] found." 2021-12-13 23:53:30 - Icons - INFO - Found element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']", 'Button')" 2021-12-13 23:53:30 - Button - INFO - Trying to click element with xpath (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']" 2021-12-13 23:53:31 - Button - INFO - Element with xpath (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color'] was clicked" 2021-12-13 23:53:31 - Icons - INFO - Trying to find element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']/div[2]", 'Base')" 2021-12-13 23:53:31 - Icons - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']/div[2] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:31 - Icons - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']/div[2] found." 2021-12-13 23:53:31 - BaseElement - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']/div[2] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:31 - BaseElement - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']/div[2] found." 2021-12-13 23:53:31 - Icons - INFO - Found element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']/div[2]", 'Base')" 2021-12-13 23:53:31 - BaseElement - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']/div[2] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:31 - BaseElement - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']/div[2] found." 2021-12-13 23:53:31 - Icons - INFO - Trying to find element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input", 'Input')" 2021-12-13 23:53:31 - Icons - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:31 - Icons - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input found." 2021-12-13 23:53:31 - Input - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:31 - Input - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input found." 2021-12-13 23:53:31 - Icons - INFO - Found element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input", 'Input')" 2021-12-13 23:53:31 - Input - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input with poll frequency 0.1s and timeout 1s" 2021-12-13 23:53:31 - Input - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input found." 2021-12-13 23:53:31 - Input - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input was found." 2021-12-13 23:53:31 - Icons - INFO - Trying to find element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input", 'Input')" 2021-12-13 23:53:31 - Icons - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:31 - Icons - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input found." 2021-12-13 23:53:31 - Input - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:31 - Input - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input found." 2021-12-13 23:53:31 - Icons - INFO - Found element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input", 'Input')" 2021-12-13 23:53:31 - Input - INFO - Trying to get base element with xpath (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input" 2021-12-13 23:53:31 - BaseElement - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:31 - BaseElement - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='r']/preceding-sibling::input found." 2021-12-13 23:53:31 - Icons - INFO - Trying to find element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='g']/preceding-sibling::input", 'Input')" 2021-12-13 23:53:31 - Icons - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='g']/preceding-sibling::input with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:31 - Icons - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='g']/preceding-sibling::input found." 2021-12-13 23:53:31 - Input - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='g']/preceding-sibling::input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:31 - Input - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='g']/preceding-sibling::input found." 2021-12-13 23:53:31 - Icons - INFO - Found element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='g']/preceding-sibling::input", 'Input')" 2021-12-13 23:53:31 - Input - INFO - Trying to get base element with xpath (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='g']/preceding-sibling::input" 2021-12-13 23:53:31 - BaseElement - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='g']/preceding-sibling::input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:31 - BaseElement - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='g']/preceding-sibling::input found." 2021-12-13 23:53:31 - Icons - INFO - Trying to find element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='b']/preceding-sibling::input", 'Input')" 2021-12-13 23:53:31 - Icons - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='b']/preceding-sibling::input with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:31 - Icons - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='b']/preceding-sibling::input found." 2021-12-13 23:53:31 - Input - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='b']/preceding-sibling::input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:31 - Input - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='b']/preceding-sibling::input found." 2021-12-13 23:53:31 - Icons - INFO - Found element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='b']/preceding-sibling::input", 'Input')" 2021-12-13 23:53:31 - Input - INFO - Trying to get base element with xpath (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='b']/preceding-sibling::input" 2021-12-13 23:53:31 - BaseElement - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='b']/preceding-sibling::input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:31 - BaseElement - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]//div[@title='Pick a background color']//label[text()='b']/preceding-sibling::input found." 2021-12-13 23:53:31 - Icons - INFO - Trying to find element ('//html', 'Button')" 2021-12-13 23:53:31 - Icons - INFO - Waiting for element //html with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:32 - Icons - INFO - Element //html found." 2021-12-13 23:53:32 - Button - INFO - Waiting for element //html with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:32 - Button - INFO - Element //html found." 2021-12-13 23:53:32 - Icons - INFO - Found element ('//html', 'Button')" 2021-12-13 23:53:32 - Button - INFO - Trying to click element with xpath //html" 2021-12-13 23:53:32 - Button - INFO - Element with xpath //html was clicked" 2021-12-13 23:53:32 - AddAssetTemplateModal - INFO - Trying to find component ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]", 'Icons')" 2021-12-13 23:53:32 - AddAssetTemplateModal - INFO - Found component ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]", 'Icons')" 2021-12-13 23:53:32 - Icons - INFO - Trying to find element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]/div/div[1]", 'Base')" 2021-12-13 23:53:32 - Icons - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]/div/div[1] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:32 - Icons - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]/div/div[1] found." 2021-12-13 23:53:32 - BaseElement - INFO - Waiting for element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]/div/div[1] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:32 - BaseElement - INFO - Element (//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]/div/div[1] found." 2021-12-13 23:53:32 - Icons - INFO - Found element ("(//div[@class='ReactModalPortal']//div[contains(@class,'grid-cell')])[9]/div/div[1]", 'Base')" 2021-12-13 23:53:32 - AddAssetTemplateModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-13 23:53:32 - AddAssetTemplateModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:32 - AddAssetTemplateModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-13 23:53:32 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:32 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-13 23:53:32 - AddAssetTemplateModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-13 23:53:32 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-13 23:53:32 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-13 23:53:32 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-13 23:53:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-13 23:53:36 - AssetTemplatesPage - INFO - Trying to format the element ("//*[text()='{}']/ancestor::span//table", 'Table') with data ('Sensors',)" 2021-12-13 23:53:36 - AssetTemplatesPage - INFO - Trying to find component ("//*[text()='Sensors']/ancestor::span//table", 'Table')" 2021-12-13 23:53:36 - AssetTemplatesPage - INFO - Found component ("//*[text()='Sensors']/ancestor::span//table", 'Table')" 2021-12-13 23:53:37 - AssetTemplatesPage - INFO - Trying to format the element ("//*[text()='{}']/ancestor::span//table", 'Table') with data ('Sensors',)" 2021-12-13 23:53:37 - AssetTemplatesPage - INFO - Trying to find component ("//*[text()='Sensors']/ancestor::span//table", 'Table')" 2021-12-13 23:53:37 - AssetTemplatesPage - INFO - Found component ("//*[text()='Sensors']/ancestor::span//table", 'Table')" 2021-12-13 23:53:37 - Table - INFO - Trying to find element ('//*[text()=\'Sensors\']/ancestor::span//table/tbody/tr[1]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-13 23:53:37 - Table - INFO - Waiting for element //*[text()='Sensors']/ancestor::span//table/tbody/tr[1]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:37 - Table - INFO - Element //*[text()='Sensors']/ancestor::span//table/tbody/tr[1]/td//i[contains(@class,"edit")] found." 2021-12-13 23:53:37 - Button - INFO - Waiting for element //*[text()='Sensors']/ancestor::span//table/tbody/tr[1]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:37 - Button - INFO - Element //*[text()='Sensors']/ancestor::span//table/tbody/tr[1]/td//i[contains(@class,"edit")] found." 2021-12-13 23:53:37 - Table - INFO - Found element ('//*[text()=\'Sensors\']/ancestor::span//table/tbody/tr[1]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-13 23:53:37 - Button - INFO - Trying to click element with xpath //*[text()='Sensors']/ancestor::span//table/tbody/tr[1]/td//i[contains(@class,"edit")]" 2021-12-13 23:53:38 - Button - INFO - Element with xpath //*[text()='Sensors']/ancestor::span//table/tbody/tr[1]/td//i[contains(@class,"edit")] was clicked" 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Trying to find element ("//*[@id='supportMasterSlave']", 'Switcher')" 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Waiting for element //*[@id='supportMasterSlave'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Element //*[@id='supportMasterSlave'] found." 2021-12-13 23:53:38 - Switcher - INFO - Waiting for element //*[@id='supportMasterSlave'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:38 - Switcher - INFO - Element //*[@id='supportMasterSlave'] found." 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Found element ("//*[@id='supportMasterSlave']", 'Switcher')" 2021-12-13 23:53:38 - Switcher - INFO - Trying to get base element with xpath //*[@id='supportMasterSlave']" 2021-12-13 23:53:38 - BaseElement - INFO - Waiting for element //*[@id='supportMasterSlave'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:38 - BaseElement - INFO - Element //*[@id='supportMasterSlave'] found." 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Trying to find element ("//*[@id='supportMasterSlave']", 'Switcher')" 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Waiting for element //*[@id='supportMasterSlave'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Element //*[@id='supportMasterSlave'] found." 2021-12-13 23:53:38 - Switcher - INFO - Waiting for element //*[@id='supportMasterSlave'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:38 - Switcher - INFO - Element //*[@id='supportMasterSlave'] found." 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Found element ("//*[@id='supportMasterSlave']", 'Switcher')" 2021-12-13 23:53:38 - Switcher - INFO - Trying to click element with xpath //*[@id='supportMasterSlave']" 2021-12-13 23:53:38 - Switcher - INFO - Element with xpath //*[@id='supportMasterSlave'] was clicked" 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Trying to find element ("//button[contains(@class, 'save-button')]", 'Button')" 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Waiting for element //button[contains(@class, 'save-button')] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Element //button[contains(@class, 'save-button')] found." 2021-12-13 23:53:38 - Button - INFO - Waiting for element //button[contains(@class, 'save-button')] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:38 - Button - INFO - Element //button[contains(@class, 'save-button')] found." 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Found element ("//button[contains(@class, 'save-button')]", 'Button')" 2021-12-13 23:53:38 - Button - INFO - Trying to click element with xpath //button[contains(@class, 'save-button')]" 2021-12-13 23:53:38 - Button - INFO - Element with xpath //button[contains(@class, 'save-button')] was clicked" 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Trying to find element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:53:38 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:38 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Found element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-13 23:53:38 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.5s and timeout 5s" 2021-12-13 23:53:38 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Trying to find element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:53:38 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:38 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:53:38 - AssetTemplatesPage - INFO - Found element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-13 23:53:38 - BaseElement - INFO - Waiting for element to disappear //div[contains(@class,'LoadingIndicator')] with poll frequency 0.5 and timeout 15" 2021-12-13 23:53:42 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] disappeared." 2021-12-13 23:53:42 - AssetTemplatesPage - INFO - Trying to find component ("(//div[contains(@class,'TabControl__activeContent')])[last()]/div/div[last()]", 'Tags')" 2021-12-13 23:53:42 - AssetTemplatesPage - INFO - Found component ("(//div[contains(@class,'TabControl__activeContent')])[last()]/div/div[last()]", 'Tags')" 2021-12-13 23:53:42 - AssetTemplatesPage - INFO - Trying to find element ("//a[text()='Points']//ancestor::li", 'Base')" 2021-12-13 23:53:42 - AssetTemplatesPage - INFO - Waiting for element //a[text()='Points']//ancestor::li with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:42 - AssetTemplatesPage - INFO - Element //a[text()='Points']//ancestor::li found." 2021-12-13 23:53:42 - BaseElement - INFO - Waiting for element //a[text()='Points']//ancestor::li with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:42 - BaseElement - INFO - Element //a[text()='Points']//ancestor::li found." 2021-12-13 23:53:42 - AssetTemplatesPage - INFO - Found element ("//a[text()='Points']//ancestor::li", 'Base')" 2021-12-13 23:53:42 - BaseElement - INFO - Trying to click element with xpath //a[text()='Points']//ancestor::li" 2021-12-13 23:53:43 - BaseElement - INFO - Element with xpath //a[text()='Points']//ancestor::li was clicked" 2021-12-13 23:53:43 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-13 23:53:43 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:43 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-13 23:53:43 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:43 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-13 23:53:43 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-13 23:53:43 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-13 23:53:43 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-13 23:53:43 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-13 23:53:43 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:43 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:53:43 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:43 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:53:43 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-13 23:53:43 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:43 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:53:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[text()='Custom']/..", 'Button')" 2021-12-13 23:53:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[text()='Custom']/.. with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:43 - AddDatapointPropertyModal - INFO - Element //*[text()='Custom']/.. found." 2021-12-13 23:53:43 - Button - INFO - Waiting for element //*[text()='Custom']/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:43 - Button - INFO - Element //*[text()='Custom']/.. found." 2021-12-13 23:53:43 - AddDatapointPropertyModal - INFO - Found element ("//*[text()='Custom']/..", 'Button')" 2021-12-13 23:53:43 - Button - INFO - Trying to click element with xpath //*[text()='Custom']/.." 2021-12-13 23:53:43 - Button - INFO - Element with xpath //*[text()='Custom']/.. was clicked" 2021-12-13 23:53:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-13 23:53:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:43 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-13 23:53:43 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:43 - Input - INFO - Element //*[@id='name'] found." 2021-12-13 23:53:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-13 23:53:43 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-13 23:53:43 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:43 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-13 23:53:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-13 23:53:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:44 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-13 23:53:44 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:44 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-13 23:53:44 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-13 23:53:44 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-13 23:53:44 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-13 23:53:44 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-13 23:53:44 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:44 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-13 23:53:44 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-13 23:53:44 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-13 23:53:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="format"]', 'Dropdown')" 2021-12-13 23:53:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="format"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:44 - AddDatapointPropertyModal - INFO - Element //*[@id="format"] found." 2021-12-13 23:53:44 - Dropdown - INFO - Waiting for element //*[@id="format"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:44 - Dropdown - INFO - Element //*[@id="format"] found." 2021-12-13 23:53:44 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="format"]', 'Dropdown')" 2021-12-13 23:53:44 - Dropdown - INFO - Trying to click element with xpath //*[@id="format"]" 2021-12-13 23:53:44 - Dropdown - INFO - Element with xpath //*[@id="format"] was clicked" 2021-12-13 23:53:44 - Dropdown - INFO - Trying to get base element with xpath //*[@id="format"]" 2021-12-13 23:53:44 - BaseElement - INFO - Waiting for element //span[text()="Float"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:44 - BaseElement - INFO - Element //span[text()="Float"]/.. found." 2021-12-13 23:53:44 - BaseElement - INFO - Trying to click element with xpath //span[text()="Float"]/.." 2021-12-13 23:53:45 - BaseElement - INFO - Element with xpath //span[text()="Float"]/.. was clicked" 2021-12-13 23:53:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@data-testid="UnitPicker.UnitsDropdown"]', 'Dropdown')" 2021-12-13 23:53:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@data-testid="UnitPicker.UnitsDropdown"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:45 - AddDatapointPropertyModal - INFO - Element //*[@data-testid="UnitPicker.UnitsDropdown"] found." 2021-12-13 23:53:45 - Dropdown - INFO - Waiting for element //*[@data-testid="UnitPicker.UnitsDropdown"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:45 - Dropdown - INFO - Element //*[@data-testid="UnitPicker.UnitsDropdown"] found." 2021-12-13 23:53:45 - AddDatapointPropertyModal - INFO - Found element ('//*[@data-testid="UnitPicker.UnitsDropdown"]', 'Dropdown')" 2021-12-13 23:53:45 - Dropdown - INFO - Trying to click element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]" 2021-12-13 23:53:45 - Dropdown - INFO - Element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"] was clicked" 2021-12-13 23:53:45 - Dropdown - INFO - Trying to get base element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]" 2021-12-13 23:53:45 - BaseElement - INFO - Waiting for element //*[@data-testid="UnitPicker.UnitsDropdown"]//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:45 - BaseElement - INFO - Element //*[@data-testid="UnitPicker.UnitsDropdown"]//input found." 2021-12-13 23:53:45 - Dropdown - INFO - Trying to get base element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]" 2021-12-13 23:53:45 - BaseElement - INFO - Waiting for element //*[@data-testid="UnitPicker.UnitsDropdown"]//div[contains(@class,"undefined")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:45 - BaseElement - INFO - Element //*[@data-testid="UnitPicker.UnitsDropdown"]//div[contains(@class,"undefined")] found." 2021-12-13 23:53:45 - Dropdown - INFO - Trying to get base element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]" 2021-12-13 23:53:45 - BaseElement - INFO - Waiting for element //*[@data-testid="UnitPicker.UnitsDropdown"]//div[contains(@class,"undefined")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:45 - BaseElement - INFO - Element //*[@data-testid="UnitPicker.UnitsDropdown"]//div[contains(@class,"undefined")] found." 2021-12-13 23:53:45 - BaseElement - INFO - Trying to click element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]//div[contains(@class,"undefined")]" 2021-12-13 23:53:46 - BaseElement - INFO - Element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]//div[contains(@class,"undefined")] was clicked" 2021-12-13 23:53:46 - Dropdown - INFO - Trying to get base element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]" 2021-12-13 23:53:46 - BaseElement - INFO - Waiting for element //span[text()="Degrees - deg"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:46 - BaseElement - INFO - Element //span[text()="Degrees - deg"]/.. found." 2021-12-13 23:53:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Degrees - deg"]/.." 2021-12-13 23:53:46 - BaseElement - INFO - Element with xpath //span[text()="Degrees - deg"]/.. was clicked" 2021-12-13 23:53:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="min"]', 'Input')" 2021-12-13 23:53:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="min"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:46 - AddDatapointPropertyModal - INFO - Element //*[@id="min"] found." 2021-12-13 23:53:46 - Input - INFO - Waiting for element //*[@id="min"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:46 - Input - INFO - Element //*[@id="min"] found." 2021-12-13 23:53:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="min"]', 'Input')" 2021-12-13 23:53:46 - Input - INFO - Trying to get base element with xpath //*[@id="min"]" 2021-12-13 23:53:46 - BaseElement - INFO - Waiting for element //*[@id="min"]//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:46 - BaseElement - INFO - Element //*[@id="min"]//input found." 2021-12-13 23:53:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="max"]', 'Input')" 2021-12-13 23:53:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="max"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:46 - AddDatapointPropertyModal - INFO - Element //*[@id="max"] found." 2021-12-13 23:53:46 - Input - INFO - Waiting for element //*[@id="max"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:46 - Input - INFO - Element //*[@id="max"] found." 2021-12-13 23:53:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="max"]', 'Input')" 2021-12-13 23:53:46 - Input - INFO - Trying to get base element with xpath //*[@id="max"]" 2021-12-13 23:53:46 - BaseElement - INFO - Waiting for element //*[@id="max"]//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:46 - BaseElement - INFO - Element //*[@id="max"]//input found." 2021-12-13 23:53:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="displayUnitId"]', 'Dropdown')" 2021-12-13 23:53:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="displayUnitId"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:47 - AddDatapointPropertyModal - INFO - Element //*[@id="displayUnitId"] found." 2021-12-13 23:53:47 - Dropdown - INFO - Waiting for element //*[@id="displayUnitId"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:47 - Dropdown - INFO - Element //*[@id="displayUnitId"] found." 2021-12-13 23:53:47 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="displayUnitId"]', 'Dropdown')" 2021-12-13 23:53:47 - Dropdown - INFO - Trying to click element with xpath //*[@id="displayUnitId"]" 2021-12-13 23:53:47 - Dropdown - INFO - Element with xpath //*[@id="displayUnitId"] was clicked" 2021-12-13 23:53:47 - Dropdown - INFO - Trying to get base element with xpath //*[@id="displayUnitId"]" 2021-12-13 23:53:47 - BaseElement - INFO - Waiting for element //span[text()="Radians - rad"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:47 - BaseElement - INFO - Element //span[text()="Radians - rad"]/.. found." 2021-12-13 23:53:47 - BaseElement - INFO - Trying to click element with xpath //span[text()="Radians - rad"]/.." 2021-12-13 23:53:47 - BaseElement - INFO - Element with xpath //span[text()="Radians - rad"]/.. was clicked" 2021-12-13 23:53:47 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-13 23:53:47 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-13 23:53:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-13 23:53:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-13 23:53:47 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:47 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-13 23:53:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-13 23:53:47 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-13 23:53:47 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:47 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-13 23:53:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-13 23:53:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-13 23:53:47 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-13 23:53:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-13 23:53:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-13 23:53:48 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-13 23:53:48 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-13 23:53:48 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:48 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-13 23:53:48 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-13 23:53:48 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-13 23:53:48 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-13 23:53:48 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-13 23:53:48 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-13 23:53:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-13 23:53:51 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-13 23:53:51 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:51 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-13 23:53:51 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:51 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-13 23:53:51 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-13 23:53:51 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-13 23:53:51 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-13 23:53:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-13 23:53:51 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:51 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:53:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:53:51 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-13 23:53:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:53:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[text()='Custom']/..", 'Button')" 2021-12-13 23:53:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[text()='Custom']/.. with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:51 - AddDatapointPropertyModal - INFO - Element //*[text()='Custom']/.. found." 2021-12-13 23:53:51 - Button - INFO - Waiting for element //*[text()='Custom']/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:51 - Button - INFO - Element //*[text()='Custom']/.. found." 2021-12-13 23:53:51 - AddDatapointPropertyModal - INFO - Found element ("//*[text()='Custom']/..", 'Button')" 2021-12-13 23:53:51 - Button - INFO - Trying to click element with xpath //*[text()='Custom']/.." 2021-12-13 23:53:52 - Button - INFO - Element with xpath //*[text()='Custom']/.. was clicked" 2021-12-13 23:53:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-13 23:53:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:52 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-13 23:53:52 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:52 - Input - INFO - Element //*[@id='name'] found." 2021-12-13 23:53:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-13 23:53:52 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-13 23:53:52 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:52 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-13 23:53:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-13 23:53:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-13 23:53:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-13 23:53:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-13 23:53:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-13 23:53:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-13 23:53:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-13 23:53:52 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:52 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-13 23:53:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-13 23:53:53 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-13 23:53:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="format"]', 'Dropdown')" 2021-12-13 23:53:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="format"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:53 - AddDatapointPropertyModal - INFO - Element //*[@id="format"] found." 2021-12-13 23:53:53 - Dropdown - INFO - Waiting for element //*[@id="format"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:53 - Dropdown - INFO - Element //*[@id="format"] found." 2021-12-13 23:53:53 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="format"]', 'Dropdown')" 2021-12-13 23:53:53 - Dropdown - INFO - Trying to click element with xpath //*[@id="format"]" 2021-12-13 23:53:53 - Dropdown - INFO - Element with xpath //*[@id="format"] was clicked" 2021-12-13 23:53:53 - Dropdown - INFO - Trying to get base element with xpath //*[@id="format"]" 2021-12-13 23:53:53 - BaseElement - INFO - Waiting for element //span[text()="Integer"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:53 - BaseElement - INFO - Element //span[text()="Integer"]/.. found." 2021-12-13 23:53:53 - BaseElement - INFO - Trying to click element with xpath //span[text()="Integer"]/.." 2021-12-13 23:53:53 - BaseElement - INFO - Element with xpath //span[text()="Integer"]/.. was clicked" 2021-12-13 23:53:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@data-testid="UnitPicker.UnitsDropdown"]', 'Dropdown')" 2021-12-13 23:53:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@data-testid="UnitPicker.UnitsDropdown"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:53 - AddDatapointPropertyModal - INFO - Element //*[@data-testid="UnitPicker.UnitsDropdown"] found." 2021-12-13 23:53:53 - Dropdown - INFO - Waiting for element //*[@data-testid="UnitPicker.UnitsDropdown"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:53 - Dropdown - INFO - Element //*[@data-testid="UnitPicker.UnitsDropdown"] found." 2021-12-13 23:53:53 - AddDatapointPropertyModal - INFO - Found element ('//*[@data-testid="UnitPicker.UnitsDropdown"]', 'Dropdown')" 2021-12-13 23:53:53 - Dropdown - INFO - Trying to click element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]" 2021-12-13 23:53:53 - Dropdown - INFO - Element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"] was clicked" 2021-12-13 23:53:53 - Dropdown - INFO - Trying to get base element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]" 2021-12-13 23:53:53 - BaseElement - INFO - Waiting for element //*[@data-testid="UnitPicker.UnitsDropdown"]//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:53 - BaseElement - INFO - Element //*[@data-testid="UnitPicker.UnitsDropdown"]//input found." 2021-12-13 23:53:54 - Dropdown - INFO - Trying to get base element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]" 2021-12-13 23:53:54 - BaseElement - INFO - Waiting for element //*[@data-testid="UnitPicker.UnitsDropdown"]//div[contains(@class,"undefined")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:54 - BaseElement - INFO - Element //*[@data-testid="UnitPicker.UnitsDropdown"]//div[contains(@class,"undefined")] found." 2021-12-13 23:53:54 - Dropdown - INFO - Trying to get base element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]" 2021-12-13 23:53:54 - BaseElement - INFO - Waiting for element //*[@data-testid="UnitPicker.UnitsDropdown"]//div[contains(@class,"undefined")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:54 - BaseElement - INFO - Element //*[@data-testid="UnitPicker.UnitsDropdown"]//div[contains(@class,"undefined")] found." 2021-12-13 23:53:54 - BaseElement - INFO - Trying to click element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]//div[contains(@class,"undefined")]" 2021-12-13 23:53:54 - BaseElement - INFO - Element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]//div[contains(@class,"undefined")] was clicked" 2021-12-13 23:53:54 - Dropdown - INFO - Trying to get base element with xpath //*[@data-testid="UnitPicker.UnitsDropdown"]" 2021-12-13 23:53:54 - BaseElement - INFO - Waiting for element //span[text()="Degrees - deg"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:54 - BaseElement - INFO - Element //span[text()="Degrees - deg"]/.. found." 2021-12-13 23:53:54 - BaseElement - INFO - Trying to click element with xpath //span[text()="Degrees - deg"]/.." 2021-12-13 23:53:54 - BaseElement - INFO - Element with xpath //span[text()="Degrees - deg"]/.. was clicked" 2021-12-13 23:53:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="min"]', 'Input')" 2021-12-13 23:53:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="min"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:54 - AddDatapointPropertyModal - INFO - Element //*[@id="min"] found." 2021-12-13 23:53:54 - Input - INFO - Waiting for element //*[@id="min"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:54 - Input - INFO - Element //*[@id="min"] found." 2021-12-13 23:53:54 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="min"]', 'Input')" 2021-12-13 23:53:54 - Input - INFO - Trying to get base element with xpath //*[@id="min"]" 2021-12-13 23:53:54 - BaseElement - INFO - Waiting for element //*[@id="min"]//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:54 - BaseElement - INFO - Element //*[@id="min"]//input found." 2021-12-13 23:53:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="max"]', 'Input')" 2021-12-13 23:53:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="max"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:54 - AddDatapointPropertyModal - INFO - Element //*[@id="max"] found." 2021-12-13 23:53:54 - Input - INFO - Waiting for element //*[@id="max"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:54 - Input - INFO - Element //*[@id="max"] found." 2021-12-13 23:53:54 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="max"]', 'Input')" 2021-12-13 23:53:54 - Input - INFO - Trying to get base element with xpath //*[@id="max"]" 2021-12-13 23:53:54 - BaseElement - INFO - Waiting for element //*[@id="max"]//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:54 - BaseElement - INFO - Element //*[@id="max"]//input found." 2021-12-13 23:53:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="displayUnitId"]', 'Dropdown')" 2021-12-13 23:53:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="displayUnitId"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:55 - AddDatapointPropertyModal - INFO - Element //*[@id="displayUnitId"] found." 2021-12-13 23:53:55 - Dropdown - INFO - Waiting for element //*[@id="displayUnitId"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:55 - Dropdown - INFO - Element //*[@id="displayUnitId"] found." 2021-12-13 23:53:55 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="displayUnitId"]', 'Dropdown')" 2021-12-13 23:53:55 - Dropdown - INFO - Trying to click element with xpath //*[@id="displayUnitId"]" 2021-12-13 23:53:55 - Dropdown - INFO - Element with xpath //*[@id="displayUnitId"] was clicked" 2021-12-13 23:53:55 - Dropdown - INFO - Trying to get base element with xpath //*[@id="displayUnitId"]" 2021-12-13 23:53:55 - BaseElement - INFO - Waiting for element //span[text()="Radians - rad"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:55 - BaseElement - INFO - Element //span[text()="Radians - rad"]/.. found." 2021-12-13 23:53:55 - BaseElement - INFO - Trying to click element with xpath //span[text()="Radians - rad"]/.." 2021-12-13 23:53:55 - BaseElement - INFO - Element with xpath //span[text()="Radians - rad"]/.. was clicked" 2021-12-13 23:53:55 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-13 23:53:55 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-13 23:53:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-13 23:53:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-13 23:53:55 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:55 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-13 23:53:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-13 23:53:55 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-13 23:53:55 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:56 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-13 23:53:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-13 23:53:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-13 23:53:56 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:56 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-13 23:53:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-13 23:53:56 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-13 23:53:56 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-13 23:53:56 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-13 23:53:56 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:53:56 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-13 23:53:56 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:53:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-13 23:53:56 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-13 23:53:56 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-13 23:53:56 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-13 23:53:56 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-13 23:54:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-13 23:54:00 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-13 23:54:00 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:00 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-13 23:54:00 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:00 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-13 23:54:00 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-13 23:54:00 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-13 23:54:00 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-13 23:54:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-13 23:54:00 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:00 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:54:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:54:00 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-13 23:54:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:54:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[text()='Custom']/..", 'Button')" 2021-12-13 23:54:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[text()='Custom']/.. with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:00 - AddDatapointPropertyModal - INFO - Element //*[text()='Custom']/.. found." 2021-12-13 23:54:00 - Button - INFO - Waiting for element //*[text()='Custom']/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:00 - Button - INFO - Element //*[text()='Custom']/.. found." 2021-12-13 23:54:00 - AddDatapointPropertyModal - INFO - Found element ("//*[text()='Custom']/..", 'Button')" 2021-12-13 23:54:00 - Button - INFO - Trying to click element with xpath //*[text()='Custom']/.." 2021-12-13 23:54:00 - Button - INFO - Element with xpath //*[text()='Custom']/.. was clicked" 2021-12-13 23:54:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-13 23:54:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-13 23:54:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-13 23:54:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-13 23:54:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-13 23:54:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-13 23:54:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-13 23:54:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:01 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-13 23:54:01 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:01 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-13 23:54:01 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-13 23:54:01 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-13 23:54:01 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-13 23:54:01 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-13 23:54:01 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:01 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-13 23:54:01 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-13 23:54:01 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-13 23:54:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="format"]', 'Dropdown')" 2021-12-13 23:54:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="format"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:01 - AddDatapointPropertyModal - INFO - Element //*[@id="format"] found." 2021-12-13 23:54:01 - Dropdown - INFO - Waiting for element //*[@id="format"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:01 - Dropdown - INFO - Element //*[@id="format"] found." 2021-12-13 23:54:01 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="format"]', 'Dropdown')" 2021-12-13 23:54:01 - Dropdown - INFO - Trying to click element with xpath //*[@id="format"]" 2021-12-13 23:54:01 - Dropdown - INFO - Element with xpath //*[@id="format"] was clicked" 2021-12-13 23:54:01 - Dropdown - INFO - Trying to get base element with xpath //*[@id="format"]" 2021-12-13 23:54:01 - BaseElement - INFO - Waiting for element //span[text()="Boolean"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:01 - BaseElement - INFO - Element //span[text()="Boolean"]/.. found." 2021-12-13 23:54:01 - BaseElement - INFO - Trying to click element with xpath //span[text()="Boolean"]/.." 2021-12-13 23:54:02 - BaseElement - INFO - Element with xpath //span[text()="Boolean"]/.. was clicked" 2021-12-13 23:54:02 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-13 23:54:02 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-13 23:54:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-13 23:54:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-13 23:54:02 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:02 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-13 23:54:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-13 23:54:02 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-13 23:54:02 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:02 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-13 23:54:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-13 23:54:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-13 23:54:02 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:02 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-13 23:54:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-13 23:54:02 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-13 23:54:02 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-13 23:54:02 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-13 23:54:02 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:02 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-13 23:54:02 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-13 23:54:02 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-13 23:54:02 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-13 23:54:02 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-13 23:54:02 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-13 23:54:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-13 23:54:05 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-13 23:54:05 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:05 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-13 23:54:05 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:05 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-13 23:54:05 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-13 23:54:05 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-13 23:54:05 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-13 23:54:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-13 23:54:05 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:05 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:54:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:54:05 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-13 23:54:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-13 23:54:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[text()='Custom']/..", 'Button')" 2021-12-13 23:54:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[text()='Custom']/.. with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:06 - AddDatapointPropertyModal - INFO - Element //*[text()='Custom']/.. found." 2021-12-13 23:54:06 - Button - INFO - Waiting for element //*[text()='Custom']/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:06 - Button - INFO - Element //*[text()='Custom']/.. found." 2021-12-13 23:54:06 - AddDatapointPropertyModal - INFO - Found element ("//*[text()='Custom']/..", 'Button')" 2021-12-13 23:54:06 - Button - INFO - Trying to click element with xpath //*[text()='Custom']/.." 2021-12-13 23:54:06 - Button - INFO - Element with xpath //*[text()='Custom']/.. was clicked" 2021-12-13 23:54:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-13 23:54:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-13 23:54:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-13 23:54:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-13 23:54:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-13 23:54:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-13 23:54:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-13 23:54:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-13 23:54:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-13 23:54:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-13 23:54:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-13 23:54:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-13 23:54:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-13 23:54:06 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:06 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-13 23:54:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-13 23:54:07 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-13 23:54:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="format"]', 'Dropdown')" 2021-12-13 23:54:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="format"] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:07 - AddDatapointPropertyModal - INFO - Element //*[@id="format"] found." 2021-12-13 23:54:07 - Dropdown - INFO - Waiting for element //*[@id="format"] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:07 - Dropdown - INFO - Element //*[@id="format"] found." 2021-12-13 23:54:07 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="format"]', 'Dropdown')" 2021-12-13 23:54:07 - Dropdown - INFO - Trying to click element with xpath //*[@id="format"]" 2021-12-13 23:54:07 - Dropdown - INFO - Element with xpath //*[@id="format"] was clicked" 2021-12-13 23:54:07 - Dropdown - INFO - Trying to get base element with xpath //*[@id="format"]" 2021-12-13 23:54:07 - BaseElement - INFO - Waiting for element //span[text()="Enum"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:07 - BaseElement - INFO - Element //span[text()="Enum"]/.. found." 2021-12-13 23:54:07 - BaseElement - INFO - Trying to click element with xpath //span[text()="Enum"]/.." 2021-12-13 23:54:07 - BaseElement - INFO - Element with xpath //span[text()="Enum"]/.. was clicked" 2021-12-13 23:54:07 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-13 23:54:07 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-13 23:54:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-13 23:54:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-13 23:54:07 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:07 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-13 23:54:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-13 23:54:07 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-13 23:54:07 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:07 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-13 23:54:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-13 23:54:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-13 23:54:07 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:07 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-13 23:54:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-13 23:54:07 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-13 23:54:07 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-13 23:54:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-13 23:54:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:54:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-13 23:54:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:54:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-13 23:54:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-13 23:54:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-13 23:54:08 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-13 23:54:08 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-13 23:54:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-13 23:54:08 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-13 23:54:08 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" -----------------------------Captured log teardown------------------------------ 2021-12-13 23:54:08 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_stworz_asset_template_z_datapointami_i_properties.png" | |||
| Failed | tests/Initialization_tests/Functional_tests/test_initialization.py::test_poprawna_inicjacja | 301.04 | |
|
request = <FixtureRequest for <Function test_poprawna_inicjacja>> @pytest.mark.usefixtures(*function_args) def scenario_wrapper(request): > _execute_scenario(feature, scenario, request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:136: in _execute_scenario _execute_step_function(request, scenario, step, step_func) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:106: in _execute_step_function return_value = step_func(**kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ login_page = <frontend.objects.Pages.login_page.LoginPage object at 0x000002744B4EC370> @then("Przekierowano na stronę logowania") def step_impl(login_page): > assert login_page.url == login_page.driver.current_url # bug - too many urls with redirection to the same page E AssertionError: assert 'http://192.168.1.254/#/auth' == 'http://192.168.1.254/auth#/auth' tests\Initialization_tests\Functional_tests\test_initialization.py:32: AssertionError -------------------------------Captured log setup------------------------------- 2021-12-13 23:59:04 - InitializationPage - INFO - Trying to find element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-13 23:59:04 - InitializationPage - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:04 - InitializationPage - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:59:04 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:04 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:59:04 - InitializationPage - INFO - Found element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-13 23:59:04 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.5s and timeout 5s" 2021-12-13 23:59:04 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:59:04 - InitializationPage - INFO - Trying to find element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-13 23:59:04 - InitializationPage - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:04 - InitializationPage - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:59:04 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:04 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-13 23:59:04 - InitializationPage - INFO - Found element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-13 23:59:04 - BaseElement - INFO - Waiting for element to disappear //div[contains(@class,'LoadingIndicator')] with poll frequency 0.5 and timeout 15" 2021-12-13 23:59:05 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] disappeared." -------------------------------Captured log call-------------------------------- 2021-12-13 23:59:05 - InitializationPage - INFO - Trying to find element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:59:05 - InitializationPage - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:05 - InitializationPage - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:59:05 - Button - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:05 - Button - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:59:05 - InitializationPage - INFO - Found element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:59:05 - Button - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:05 - Button - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:59:05 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:59:05 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:05 - InitializationPage - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:59:05 - Input - INFO - Waiting for element //span[@id='initialize-password_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:05 - Input - INFO - Element //span[@id='initialize-password_password'] found." 2021-12-13 23:59:05 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password']", 'Input')" 2021-12-13 23:59:05 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password']" 2021-12-13 23:59:05 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:05 - BaseElement - INFO - Element //span[@id='initialize-password_password']//input found." 2021-12-13 23:59:05 - InitializationPage - INFO - Trying to find element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:59:05 - InitializationPage - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:05 - InitializationPage - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:59:05 - Input - INFO - Waiting for element //span[@id='initialize-password_password_confirmation'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:05 - Input - INFO - Element //span[@id='initialize-password_password_confirmation'] found." 2021-12-13 23:59:05 - InitializationPage - INFO - Found element ("//span[@id='initialize-password_password_confirmation']", 'Input')" 2021-12-13 23:59:05 - Input - INFO - Trying to get base element with xpath //span[@id='initialize-password_password_confirmation']" 2021-12-13 23:59:05 - BaseElement - INFO - Waiting for element //span[@id='initialize-password_password_confirmation']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:05 - BaseElement - INFO - Element //span[@id='initialize-password_password_confirmation']//input found." 2021-12-13 23:59:05 - InitializationPage - INFO - Trying to find element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:59:05 - InitializationPage - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:05 - InitializationPage - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:59:05 - Button - INFO - Waiting for element //button[@id='initialize-password_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:05 - Button - INFO - Element //button[@id='initialize-password_submit'] found." 2021-12-13 23:59:05 - InitializationPage - INFO - Found element ("//button[@id='initialize-password_submit']", 'Button')" 2021-12-13 23:59:05 - Button - INFO - Trying to click element with xpath //button[@id='initialize-password_submit']" 2021-12-13 23:59:05 - Button - INFO - Element with xpath //button[@id='initialize-password_submit'] was clicked" 2021-12-13 23:59:05 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:05 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:09 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:09 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:09 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:09 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:09 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-13 23:59:09 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:09 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:09 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:09 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:09 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:09 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:09 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:09 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-13 23:59:09 - Button - INFO - Element //button[@id='login-screen_login'] found." -----------------------------Captured log teardown------------------------------ 2021-12-13 23:59:09 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_poprawna_inicjacja.png" | |||
| Failed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_logowania[--Username is required-Password is required-] | 6.02 | |
|
request = <FixtureRequest for <Function test_wyswietlanie_bledow_podczas_logowania[--Username is required-Password is required-]>> @pytest.mark.usefixtures(*function_args) def scenario_wrapper(request): > _execute_scenario(feature, scenario, request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:136: in _execute_scenario _execute_step_function(request, scenario, step, step_func) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:106: in _execute_step_function return_value = step_func(**kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ login_page = <frontend.objects.Pages.login_page.LoginPage object at 0x000002744B4E94C0> blad_nazwy_uzytkownika = 'Username is required' blad_hasla = 'Password is required', blad_ogolny = '' @then('Wyświetlono "<blad_nazwy_uzytkownika>" i "<blad_hasla>" i "<blad_ogolny>" podczas logowania') def step_impl(login_page, blad_nazwy_uzytkownika, blad_hasla, blad_ogolny): if blad_nazwy_uzytkownika != '': > assert login_page.get_username_validation() == blad_nazwy_uzytkownika E AssertionError: assert 'Required' == 'Username is required' tests\Login_tests\functional_tests\test_login.py:209: AssertionError -------------------------------Captured log call-------------------------------- 2021-12-13 23:59:14 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:14 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:15 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:15 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:15 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:15 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:15 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-13 23:59:15 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:15 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:15 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:15 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:15 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:15 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:15 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:15 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-13 23:59:15 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:15 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-13 23:59:15 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:15 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:15 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:15 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:15 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:15 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:15 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:15 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:15 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-13 23:59:15 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:15 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:15 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:15 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:15 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:15 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:15 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-13 23:59:15 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-13 23:59:15 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:15 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:15 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:15 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:15 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:15 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:15 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-13 23:59:15 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:15 - BaseElement - INFO - Element //span[@id='login-screen_login']/div[contains(@class,"validation")] found." 2021-12-13 23:59:15 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:59:15 - BaseElement - INFO - Element //span[@id='login-screen_login']/div[contains(@class,"validation")] found." 2021-12-13 23:59:15 - BaseElement - INFO - Element //span[@id='login-screen_login']/div[contains(@class,"validation")] was found." 2021-12-13 23:59:15 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='login-screen_login']/div[contains(@class,"validation")]" -----------------------------Captured log teardown------------------------------ 2021-12-13 23:59:15 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_wyswietlanie_bledow_podczas_logowania[--Username is required-Password is required-].png" | |||
| Failed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_logowania[Admin-Abcdefghij1ą--Password must only contain alphanumerical characters-] | 5.84 | |
|
request = <FixtureRequest for <Function test_wyswietlanie_bledow_podczas_logowania[Admin-Abcdefghij1\u0105--Password must only contain alphanumerical characters-]>> @pytest.mark.usefixtures(*function_args) def scenario_wrapper(request): > _execute_scenario(feature, scenario, request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:136: in _execute_scenario _execute_step_function(request, scenario, step, step_func) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:106: in _execute_step_function return_value = step_func(**kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ login_page = <frontend.objects.Pages.login_page.LoginPage object at 0x000002744B6C70A0> blad_nazwy_uzytkownika = '' blad_hasla = 'Password must only contain alphanumerical characters' blad_ogolny = '' @then('Wyświetlono "<blad_nazwy_uzytkownika>" i "<blad_hasla>" i "<blad_ogolny>" podczas logowania') def step_impl(login_page, blad_nazwy_uzytkownika, blad_hasla, blad_ogolny): if blad_nazwy_uzytkownika != '': assert login_page.get_username_validation() == blad_nazwy_uzytkownika if blad_hasla != '': > assert login_page.get_password_validation() == blad_hasla E AssertionError: assert 'Password must have at least one special character' == 'Password must only contain alphanumerical characters' tests\Login_tests\functional_tests\test_login.py:211: AssertionError -------------------------------Captured log call-------------------------------- 2021-12-13 23:59:48 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:48 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:48 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:48 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:48 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:48 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:48 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-13 23:59:48 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:48 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:48 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:48 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:48 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:48 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:48 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:48 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-13 23:59:48 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:48 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-13 23:59:48 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:48 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:48 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:48 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:48 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:48 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:48 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:48 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:48 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-13 23:59:48 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:48 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:48 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:48 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:48 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:48 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:48 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-13 23:59:49 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-13 23:59:49 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:49 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:49 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:49 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:49 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:49 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:49 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:49 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:49 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] found." 2021-12-13 23:59:49 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:59:49 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] found." 2021-12-13 23:59:49 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] was found." 2021-12-13 23:59:49 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='login-screen_password']/div[contains(@class,"validation")]" -----------------------------Captured log teardown------------------------------ 2021-12-13 23:59:49 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_wyswietlanie_bledow_podczas_logowania[Admin-Abcdefghij1u0105--Password must only contain alphanumerical characters-].png" | |||
| Failed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[a-a-Password must have at least 10 characters-Password must have at least 10 characters] | 24.58 | |
|
request = <FixtureRequest for <Function test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[a-a-Password must have at least 10 characters-Password must have at least 10 characters]>> @pytest.mark.usefixtures(*function_args) def scenario_wrapper(request): > _execute_scenario(feature, scenario, request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:136: in _execute_scenario _execute_step_function(request, scenario, step, step_func) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in _execute_step_function kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in <dictcomp> kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:581: in getfixturevalue fixturedef = self._get_active_fixturedef(argname) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:601: in _get_active_fixturedef self._compute_fixture_value(fixturedef) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:687: in _compute_fixture_value fixturedef.execute(request=subrequest) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1072: in execute result = hook.pytest_fixture_setup(fixturedef=self, request=request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_hooks.py:265: in __call__ return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_manager.py:80: in _hookexec return self._inner_hookexec(hook_name, methods, kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1126: in pytest_fixture_setup result = call_fixture_func(fixturefunc, request, kwargs) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:932: in call_fixture_func fixture_result = fixturefunc(**kwargs) tests\Login_tests\conftest.py:19: in account_init_page return AccountInitializationPage(browser) frontend\objects\Pages\account_initalization_page.py:15: in __init__ self.get_element(AccountInitializationLocators.company_input).wait_for_element(timeout=20) frontend\element_creation.py:62: in get_element self.__wait_for_element(locator[0], timeout=timeout) frontend\element_creation.py:33: in __wait_for_element WebDriverWait(self.driver, timeout, poll_frequency).until( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.support.wait.WebDriverWait (session="2267548aaadb07f242326dea96e74001")> method = <selenium.webdriver.support.expected_conditions.visibility_of_element_located object at 0x000002744B5BD8E0> message = 'Element not found in 15s. Check correctness of the xpath provided or extend timeout.' def until(self, method, message=''): """Calls the method provided with the driver as an argument until the \ return value is not False.""" screen = None stacktrace = None end_time = time.time() + self._timeout while True: try: value = method(self._driver) if value: return value except self._ignored_exceptions as exc: screen = getattr(exc, 'screen', None) stacktrace = getattr(exc, 'stacktrace', None) time.sleep(self._poll) if time.time() > end_time: break > raise TimeoutException(message, screen, stacktrace) E selenium.common.exceptions.TimeoutException: Message: Element not found in 15s. Check correctness of the xpath provided or extend timeout. C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\support\wait.py:80: TimeoutException -------------------------------Captured log call-------------------------------- 2021-12-14 00:01:06 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:01:06 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:06 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:06 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:06 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:06 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:01:06 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:01:06 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:06 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:01:06 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:06 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:01:06 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:06 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:01:06 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:01:06 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:01:06 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:07 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:01:07 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:01:07 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:07 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:01:07 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:07 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:01:07 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:01:07 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:01:07 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:07 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:01:07 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:01:07 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:07 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:07 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:07 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:07 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:01:07 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:01:07 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:01:10 - AccountInitializationPage - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:01:10 - AccountInitializationPage - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:10 - AccountInitializationPage - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:01:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:01:10 - AccountInitializationPage - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:01:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:01:10 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:01:10 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 15s" -----------------------------Captured log teardown------------------------------ 2021-12-14 00:01:26 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[a-a-Password must have at least 10 characters-Password must have at least 10 characters].png" | |||
| Failed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[abcdefghij-abcdefghij-Password must have at least one upper case letter-Password must have at least one upper case letter] | 20.84 | |
|
request = <FixtureRequest for <Function test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[abcdefghij-abcdefghij-Password must have at least one upper case letter-Password must have at least one upper case letter]>> @pytest.mark.usefixtures(*function_args) def scenario_wrapper(request): > _execute_scenario(feature, scenario, request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:136: in _execute_scenario _execute_step_function(request, scenario, step, step_func) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in _execute_step_function kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in <dictcomp> kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:581: in getfixturevalue fixturedef = self._get_active_fixturedef(argname) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:601: in _get_active_fixturedef self._compute_fixture_value(fixturedef) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:687: in _compute_fixture_value fixturedef.execute(request=subrequest) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1072: in execute result = hook.pytest_fixture_setup(fixturedef=self, request=request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_hooks.py:265: in __call__ return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_manager.py:80: in _hookexec return self._inner_hookexec(hook_name, methods, kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1126: in pytest_fixture_setup result = call_fixture_func(fixturefunc, request, kwargs) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:932: in call_fixture_func fixture_result = fixturefunc(**kwargs) tests\Login_tests\conftest.py:19: in account_init_page return AccountInitializationPage(browser) frontend\objects\Pages\account_initalization_page.py:13: in __init__ super().__init__(driver) frontend\objects\Modals\base_modal.py:20: in __init__ self.get_element(('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')).wait_for_element() frontend\element_creation.py:62: in get_element self.__wait_for_element(locator[0], timeout=timeout) frontend\element_creation.py:33: in __wait_for_element WebDriverWait(self.driver, timeout, poll_frequency).until( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.support.wait.WebDriverWait (session="92c67a64e9936a3197f36b8208de337f")> method = <selenium.webdriver.support.expected_conditions.visibility_of_element_located object at 0x000002744B9BB4F0> message = 'Element not found in 15s. Check correctness of the xpath provided or extend timeout.' def until(self, method, message=''): """Calls the method provided with the driver as an argument until the \ return value is not False.""" screen = None stacktrace = None end_time = time.time() + self._timeout while True: try: value = method(self._driver) if value: return value except self._ignored_exceptions as exc: screen = getattr(exc, 'screen', None) stacktrace = getattr(exc, 'stacktrace', None) time.sleep(self._poll) if time.time() > end_time: break > raise TimeoutException(message, screen, stacktrace) E selenium.common.exceptions.TimeoutException: Message: Element not found in 15s. Check correctness of the xpath provided or extend timeout. C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\support\wait.py:80: TimeoutException -------------------------------Captured log call-------------------------------- 2021-12-14 00:01:30 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:01:30 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:30 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:30 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:30 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:30 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:01:30 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:01:30 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:30 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:01:30 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:30 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:01:30 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:31 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:01:31 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:01:31 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:01:31 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:31 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:01:31 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:01:31 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:31 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:01:31 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:31 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:01:31 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:01:31 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:01:31 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:31 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:01:31 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:01:31 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:31 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:31 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:31 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:31 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:01:31 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:01:31 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:01:31 - AccountInitializationPage - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:01:31 - AccountInitializationPage - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" -----------------------------Captured log teardown------------------------------ 2021-12-14 00:01:47 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[abcdefghij-abcdefghij-Password must have at least one upper case letter-Password must have at least one upper case letter].png" | |||
| Failed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[ABCDEFGHIJ-ABCDEFGHIJ-Password must have at least one lower case letter-Password must have at least one lower case letter] | 11.12 | |
|
request = <FixtureRequest for <Function test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[ABCDEFGHIJ-ABCDEFGHIJ-Password must have at least one lower case letter-Password must have at least one lower case letter]>> @pytest.mark.usefixtures(*function_args) def scenario_wrapper(request): > _execute_scenario(feature, scenario, request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:136: in _execute_scenario _execute_step_function(request, scenario, step, step_func) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in _execute_step_function kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in <dictcomp> kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:581: in getfixturevalue fixturedef = self._get_active_fixturedef(argname) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:601: in _get_active_fixturedef self._compute_fixture_value(fixturedef) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:687: in _compute_fixture_value fixturedef.execute(request=subrequest) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1072: in execute result = hook.pytest_fixture_setup(fixturedef=self, request=request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_hooks.py:265: in __call__ return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_manager.py:80: in _hookexec return self._inner_hookexec(hook_name, methods, kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1126: in pytest_fixture_setup result = call_fixture_func(fixturefunc, request, kwargs) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:932: in call_fixture_func fixture_result = fixturefunc(**kwargs) tests\Login_tests\conftest.py:19: in account_init_page return AccountInitializationPage(browser) frontend\objects\Pages\account_initalization_page.py:13: in __init__ super().__init__(driver) frontend\objects\Modals\base_modal.py:20: in __init__ self.get_element(('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')).wait_for_element() frontend\element_creation.py:75: in get_element element = BaseElement(self.driver.find_element_by_xpath(locator[0]), locator[0]) frontend\elements\base_element.py:24: in __init__ self.wait_for_element() frontend\elements\base_element.py:65: in wait_for_element WebDriverWait(self.driver, timeout, poll_frequency).until( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <[AttributeError("'WebElement' object has no attribute 'session_id'") raised in repr()] WebDriverWait object at 0x2744b76ce80> method = <selenium.webdriver.support.expected_conditions.visibility_of_element_located object at 0x000002744B76CC40> message = 'Element not found in 5s. Check correctness of the xpath provided or extend timeout.' def until(self, method, message=''): """Calls the method provided with the driver as an argument until the \ return value is not False.""" screen = None stacktrace = None end_time = time.time() + self._timeout while True: try: value = method(self._driver) if value: return value except self._ignored_exceptions as exc: screen = getattr(exc, 'screen', None) stacktrace = getattr(exc, 'stacktrace', None) time.sleep(self._poll) if time.time() > end_time: break > raise TimeoutException(message, screen, stacktrace) E selenium.common.exceptions.TimeoutException: Message: Element not found in 5s. Check correctness of the xpath provided or extend timeout. C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\support\wait.py:80: TimeoutException -------------------------------Captured log call-------------------------------- 2021-12-14 00:01:51 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:01:51 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:51 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:51 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:51 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:51 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:01:51 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:01:52 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:52 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:01:52 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:52 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:01:52 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:52 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:01:52 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:01:52 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:01:52 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:52 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:01:52 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:01:52 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:52 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:01:52 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:52 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:01:52 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:01:52 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:01:52 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:52 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:01:52 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:01:52 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:52 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:52 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:52 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:01:52 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:01:52 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:01:52 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:01:53 - AccountInitializationPage - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:01:53 - AccountInitializationPage - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:53 - AccountInitializationPage - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:01:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" -----------------------------Captured log teardown------------------------------ 2021-12-14 00:01:58 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[ABCDEFGHIJ-ABCDEFGHIJ-Password must have at least one lower case letter-Password must have at least one lower case letter].png" | |||
| Failed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[Abcdefghij-Abcdefghij-Password must have at least one digit-Password must have at least one digit] | 21.61 | |
|
request = <FixtureRequest for <Function test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[Abcdefghij-Abcdefghij-Password must have at least one digit-Password must have at least one digit]>> @pytest.mark.usefixtures(*function_args) def scenario_wrapper(request): > _execute_scenario(feature, scenario, request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:136: in _execute_scenario _execute_step_function(request, scenario, step, step_func) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in _execute_step_function kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in <dictcomp> kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:581: in getfixturevalue fixturedef = self._get_active_fixturedef(argname) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:601: in _get_active_fixturedef self._compute_fixture_value(fixturedef) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:687: in _compute_fixture_value fixturedef.execute(request=subrequest) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1072: in execute result = hook.pytest_fixture_setup(fixturedef=self, request=request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_hooks.py:265: in __call__ return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_manager.py:80: in _hookexec return self._inner_hookexec(hook_name, methods, kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1126: in pytest_fixture_setup result = call_fixture_func(fixturefunc, request, kwargs) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:932: in call_fixture_func fixture_result = fixturefunc(**kwargs) tests\Login_tests\conftest.py:19: in account_init_page return AccountInitializationPage(browser) frontend\objects\Pages\account_initalization_page.py:15: in __init__ self.get_element(AccountInitializationLocators.company_input).wait_for_element(timeout=20) frontend\element_creation.py:62: in get_element self.__wait_for_element(locator[0], timeout=timeout) frontend\element_creation.py:33: in __wait_for_element WebDriverWait(self.driver, timeout, poll_frequency).until( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.support.wait.WebDriverWait (session="c6ff6c00bb5edc370ae4565a26ba2062")> method = <selenium.webdriver.support.expected_conditions.visibility_of_element_located object at 0x000002744B912AC0> message = 'Element not found in 15s. Check correctness of the xpath provided or extend timeout.' def until(self, method, message=''): """Calls the method provided with the driver as an argument until the \ return value is not False.""" screen = None stacktrace = None end_time = time.time() + self._timeout while True: try: value = method(self._driver) if value: return value except self._ignored_exceptions as exc: screen = getattr(exc, 'screen', None) stacktrace = getattr(exc, 'stacktrace', None) time.sleep(self._poll) if time.time() > end_time: break > raise TimeoutException(message, screen, stacktrace) E selenium.common.exceptions.TimeoutException: Message: Element not found in 15s. Check correctness of the xpath provided or extend timeout. C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\support\wait.py:80: TimeoutException -------------------------------Captured log call-------------------------------- 2021-12-14 00:02:03 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:02:03 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:03 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:03 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:03 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:03 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:02:03 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:02:03 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:03 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:02:03 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:03 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:02:03 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:03 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:02:03 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:02:03 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:02:03 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:03 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:02:04 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:02:04 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:04 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:02:04 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:04 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:02:04 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:02:04 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:02:04 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:04 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:02:04 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:02:04 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:04 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:04 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:04 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:04 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:02:04 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:02:04 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:02:04 - AccountInitializationPage - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:02:04 - AccountInitializationPage - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:04 - AccountInitializationPage - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:02:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:02:04 - AccountInitializationPage - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:02:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:02:04 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:02:04 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 15s" -----------------------------Captured log teardown------------------------------ 2021-12-14 00:02:20 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[Abcdefghij-Abcdefghij-Password must have at least one digit-Password must have at least one digit].png" | |||
| Failed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[Abcdefghij1-Abcdefghij1-Password must have at least one special character-Password must have at least one special character] | 21.60 | |
|
request = <FixtureRequest for <Function test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[Abcdefghij1-Abcdefghij1-Password must have at least one special character-Password must have at least one special character]>> @pytest.mark.usefixtures(*function_args) def scenario_wrapper(request): > _execute_scenario(feature, scenario, request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:136: in _execute_scenario _execute_step_function(request, scenario, step, step_func) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in _execute_step_function kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in <dictcomp> kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:581: in getfixturevalue fixturedef = self._get_active_fixturedef(argname) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:601: in _get_active_fixturedef self._compute_fixture_value(fixturedef) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:687: in _compute_fixture_value fixturedef.execute(request=subrequest) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1072: in execute result = hook.pytest_fixture_setup(fixturedef=self, request=request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_hooks.py:265: in __call__ return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_manager.py:80: in _hookexec return self._inner_hookexec(hook_name, methods, kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1126: in pytest_fixture_setup result = call_fixture_func(fixturefunc, request, kwargs) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:932: in call_fixture_func fixture_result = fixturefunc(**kwargs) tests\Login_tests\conftest.py:19: in account_init_page return AccountInitializationPage(browser) frontend\objects\Pages\account_initalization_page.py:15: in __init__ self.get_element(AccountInitializationLocators.company_input).wait_for_element(timeout=20) frontend\element_creation.py:62: in get_element self.__wait_for_element(locator[0], timeout=timeout) frontend\element_creation.py:33: in __wait_for_element WebDriverWait(self.driver, timeout, poll_frequency).until( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.support.wait.WebDriverWait (session="31a838b1299912d37a4e3f37c784306d")> method = <selenium.webdriver.support.expected_conditions.visibility_of_element_located object at 0x000002744B972D30> message = 'Element not found in 15s. Check correctness of the xpath provided or extend timeout.' def until(self, method, message=''): """Calls the method provided with the driver as an argument until the \ return value is not False.""" screen = None stacktrace = None end_time = time.time() + self._timeout while True: try: value = method(self._driver) if value: return value except self._ignored_exceptions as exc: screen = getattr(exc, 'screen', None) stacktrace = getattr(exc, 'stacktrace', None) time.sleep(self._poll) if time.time() > end_time: break > raise TimeoutException(message, screen, stacktrace) E selenium.common.exceptions.TimeoutException: Message: Element not found in 15s. Check correctness of the xpath provided or extend timeout. C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\support\wait.py:80: TimeoutException -------------------------------Captured log call-------------------------------- 2021-12-14 00:02:25 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:02:25 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:25 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:25 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:25 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:25 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:02:25 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:02:25 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:25 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:02:25 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:25 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:02:25 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:25 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:02:25 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:02:25 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:02:25 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:25 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:02:25 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:02:25 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:25 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:02:25 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:25 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:02:25 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:02:25 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:02:25 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:25 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:02:25 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:02:25 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:25 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:25 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:25 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:25 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:02:25 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:02:25 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:02:26 - AccountInitializationPage - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:02:26 - AccountInitializationPage - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:26 - AccountInitializationPage - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:02:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:02:26 - AccountInitializationPage - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:02:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:02:26 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:02:26 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 15s" -----------------------------Captured log teardown------------------------------ 2021-12-14 00:02:42 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[Abcdefghij1-Abcdefghij1-Password must have at least one special character-Password must have at least one special character].png" | |||
| Failed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[Abcdefghij1ą-Abcdefghij1ą-Password must only contain alphanumerical characters-Password must only contain alphanumerical characters] | 20.89 | |
|
request = <FixtureRequest for <Function test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[Abcdefghij1\u0105-Abcdefghij1\u0105-Password must only contain alphanumerical characters-Password must only contain alphanumerical characters]>> @pytest.mark.usefixtures(*function_args) def scenario_wrapper(request): > _execute_scenario(feature, scenario, request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:136: in _execute_scenario _execute_step_function(request, scenario, step, step_func) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in _execute_step_function kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in <dictcomp> kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:581: in getfixturevalue fixturedef = self._get_active_fixturedef(argname) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:601: in _get_active_fixturedef self._compute_fixture_value(fixturedef) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:687: in _compute_fixture_value fixturedef.execute(request=subrequest) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1072: in execute result = hook.pytest_fixture_setup(fixturedef=self, request=request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_hooks.py:265: in __call__ return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_manager.py:80: in _hookexec return self._inner_hookexec(hook_name, methods, kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1126: in pytest_fixture_setup result = call_fixture_func(fixturefunc, request, kwargs) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:932: in call_fixture_func fixture_result = fixturefunc(**kwargs) tests\Login_tests\conftest.py:19: in account_init_page return AccountInitializationPage(browser) frontend\objects\Pages\account_initalization_page.py:13: in __init__ super().__init__(driver) frontend\objects\Modals\base_modal.py:20: in __init__ self.get_element(('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')).wait_for_element() frontend\element_creation.py:62: in get_element self.__wait_for_element(locator[0], timeout=timeout) frontend\element_creation.py:33: in __wait_for_element WebDriverWait(self.driver, timeout, poll_frequency).until( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.support.wait.WebDriverWait (session="e99e5f4989b4114aaaee373bc6bbbfc7")> method = <selenium.webdriver.support.expected_conditions.visibility_of_element_located object at 0x000002744B90E1F0> message = 'Element not found in 15s. Check correctness of the xpath provided or extend timeout.' def until(self, method, message=''): """Calls the method provided with the driver as an argument until the \ return value is not False.""" screen = None stacktrace = None end_time = time.time() + self._timeout while True: try: value = method(self._driver) if value: return value except self._ignored_exceptions as exc: screen = getattr(exc, 'screen', None) stacktrace = getattr(exc, 'stacktrace', None) time.sleep(self._poll) if time.time() > end_time: break > raise TimeoutException(message, screen, stacktrace) E selenium.common.exceptions.TimeoutException: Message: Element not found in 15s. Check correctness of the xpath provided or extend timeout. C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\support\wait.py:80: TimeoutException -------------------------------Captured log call-------------------------------- 2021-12-14 00:02:46 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:02:46 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:46 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:46 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:46 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:46 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:02:46 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:02:46 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:46 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:02:46 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:46 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:02:46 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:46 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:02:46 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:02:46 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:02:46 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:46 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:02:47 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:02:47 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:47 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:02:47 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:47 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:02:47 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:02:47 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:02:47 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:47 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:02:47 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:02:47 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:02:47 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:47 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:02:47 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:02:47 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:02:47 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:02:47 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:02:47 - AccountInitializationPage - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:02:47 - AccountInitializationPage - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" -----------------------------Captured log teardown------------------------------ 2021-12-14 00:03:03 - Test Logger - WARNING - Screenshot save failed" | |||
| Failed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[Smartspaces1!-Smartspaces2!--Passwords do not match] | 21.89 | |
|
request = <FixtureRequest for <Function test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[Smartspaces1!-Smartspaces2!--Passwords do not match]>> @pytest.mark.usefixtures(*function_args) def scenario_wrapper(request): > _execute_scenario(feature, scenario, request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:136: in _execute_scenario _execute_step_function(request, scenario, step, step_func) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in _execute_step_function kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pytest_bdd\scenario.py:100: in <dictcomp> kwargs = {arg: request.getfixturevalue(arg) for arg in get_args(step_func)} C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:581: in getfixturevalue fixturedef = self._get_active_fixturedef(argname) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:601: in _get_active_fixturedef self._compute_fixture_value(fixturedef) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:687: in _compute_fixture_value fixturedef.execute(request=subrequest) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1072: in execute result = hook.pytest_fixture_setup(fixturedef=self, request=request) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_hooks.py:265: in __call__ return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\pluggy\_manager.py:80: in _hookexec return self._inner_hookexec(hook_name, methods, kwargs, firstresult) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:1126: in pytest_fixture_setup result = call_fixture_func(fixturefunc, request, kwargs) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\_pytest\fixtures.py:932: in call_fixture_func fixture_result = fixturefunc(**kwargs) tests\Login_tests\conftest.py:19: in account_init_page return AccountInitializationPage(browser) frontend\objects\Pages\account_initalization_page.py:15: in __init__ self.get_element(AccountInitializationLocators.company_input).wait_for_element(timeout=20) frontend\element_creation.py:62: in get_element self.__wait_for_element(locator[0], timeout=timeout) frontend\element_creation.py:33: in __wait_for_element WebDriverWait(self.driver, timeout, poll_frequency).until( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.support.wait.WebDriverWait (session="fbcb62f6e634e02688151ed9437fb52d")> method = <selenium.webdriver.support.expected_conditions.visibility_of_element_located object at 0x000002744BA2DFD0> message = 'Element not found in 15s. Check correctness of the xpath provided or extend timeout.' def until(self, method, message=''): """Calls the method provided with the driver as an argument until the \ return value is not False.""" screen = None stacktrace = None end_time = time.time() + self._timeout while True: try: value = method(self._driver) if value: return value except self._ignored_exceptions as exc: screen = getattr(exc, 'screen', None) stacktrace = getattr(exc, 'stacktrace', None) time.sleep(self._poll) if time.time() > end_time: break > raise TimeoutException(message, screen, stacktrace) E selenium.common.exceptions.TimeoutException: Message: Element not found in 15s. Check correctness of the xpath provided or extend timeout. C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\support\wait.py:80: TimeoutException -------------------------------Captured log call-------------------------------- 2021-12-14 00:03:08 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:03:08 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:08 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:08 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:09 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:09 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:03:09 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:03:09 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:09 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:03:09 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:09 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:03:09 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:09 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:03:09 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:03:09 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:03:09 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:09 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:03:09 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:03:09 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:09 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:03:09 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:09 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:03:09 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:03:09 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:03:09 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:09 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:03:09 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:03:09 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:09 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:09 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:09 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:09 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:03:09 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:03:09 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:03:09 - AccountInitializationPage - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:03:09 - AccountInitializationPage - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:09 - AccountInitializationPage - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:03:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:03:09 - AccountInitializationPage - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:03:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:03:10 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:03:10 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 15s" -----------------------------Captured log teardown------------------------------ 2021-12-14 00:03:25 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_wyswietlanie_bledow_podczas_inicjacji_konta_innego_niz_admin[Smartspaces1!-Smartspaces2!--Passwords do not match].png" | |||
| Failed | tests/Asset_Template_tests/Functional_tests/test_datapoints_and_properties.py::test_dodanie_wszystkich_datapointow | 2122.53 | |
|
asset_templates_page = <frontend.objects.Pages.asset_templates_page.AssetTemplatesPage object at 0x000002744B8FC310> @pytest.mark.order(18) def test_dodanie_wszystkich_datapointow(asset_templates_page): """ Test dodający wszystkie standardowe datapointy WARUNKI WSTĘPNE: - Jestem na stronie Asset templates - Jestem w trybie edycji Asset template'u" OPIS KROKU: 1. Kliknij przycisk 'Add datapoint' 2. Wybierz każdy standardowy datapoint, poddaj edycji i zapisz OCZEKIWANY REZULTAT: 1. Okno dialogowe dla dodania datapointu zostało wyświetlone 2. Dodano wszystkie standardowe datapointy """ # Preconditions assert asset_templates_page.url == asset_templates_page.driver.current_url template_table = asset_templates_page.template_table(table_name='Central').get_table( unique_column_name='TEMPLATE NAME') assert template_table[TEMPLATE_FUNCTIONAL_TESTS]['TEMPLATE NAME'] == TEMPLATE_FUNCTIONAL_TESTS asset_templates_page.template_table('Central').edit_row(unique_column_name='TEMPLATE NAME', row_name=TEMPLATE_FUNCTIONAL_TESTS) # add_template_modal = asset_templates_page.click_add_button('Central') # template_name = f'{create_random_string(5)} {create_random_string(5)}' # add_template_modal.set_template_name(template_name) # add_template_modal.set_template_type('Boiler') # add_template_modal.save() # asset_templates_page.template_table('Central').edit_row(unique_column_name='TEMPLATE NAME', # row_name=template_name) # step 1 asset_templates_page.open_tab('Points') datapoint_modal = asset_templates_page.click_add_datapoint() datapoint_names_and_categories = datapoint_modal.get_datapoint_names() datapoint_modal.close() # step 2 datpoint_names = [] failing_datapoints = [] for category in datapoint_names_and_categories: for subcategory in datapoint_names_and_categories[category]: if len(datapoint_names_and_categories[category][subcategory]) > 0: for datapoint in datapoint_names_and_categories[category][subcategory]: asset_templates_page.click_add_datapoint() datapoint_modal.click_choose_datapoint(category=category, subcategory=subcategory, datapoint=datapoint) datapoint_name = f'{category}-{subcategory}-{datapoint}' datapoint_name = datapoint_name[0:30]+create_random_string(2) datpoint_names.append(datapoint_name) datapoint_modal.set_name(datapoint_name) datapoint_modal.set_type(datapoint_modal.datapoint_types[random.randint(0, 3)]) datapoint_modal.tags.set_new_tag(create_random_string(5)) try: datapoint_modal.save() except: failing_datapoints.append(datapoint_modal.get_name()) datapoint_modal.cancel() else: asset_templates_page.click_add_datapoint() datapoint_modal.click_choose_datapoint(category=category, subcategory=subcategory) datapoint_name = f'{category}-{subcategory}' datapoint_name = datapoint_name[0:30] + create_random_string(2) datpoint_names.append(datapoint_name) datapoint_modal.set_name(datapoint_name) datapoint_modal.set_type(datapoint_modal.datapoint_types[random.randint(0, 3)]) datapoint_modal.tags.set_new_tag(create_random_string(5)) try: datapoint_modal.save() except: failing_datapoints.append(datapoint_modal.get_name()) datapoint_modal.cancel() if len(failing_datapoints) != 0: > raise ValueError(f'Not working datapoints: \n {failing_datapoints}') E ValueError: Not working datapoints: E ['Date & Time-Season-Heating SeaJ2', 'Date & Time-Season-Heating Sea6V', 'Date & Time-Season-Cooling SeaDB', 'Date & Time-Season-Cooling SeaN9'] tests\Asset_Template_tests\Functional_tests\test_datapoints_and_properties.py:81: ValueError -------------------------------Captured log setup------------------------------- 2021-12-14 00:04:29 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:04:29 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:29 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:29 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:29 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:29 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:04:29 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:04:29 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:29 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:04:29 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:29 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:04:29 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:29 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:04:29 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:04:29 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:04:29 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:29 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:04:29 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:04:29 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:29 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:04:30 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:30 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:04:30 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:04:30 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:04:30 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:30 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:04:30 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:04:30 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:30 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:30 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:30 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:30 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:04:30 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:04:30 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:04:30 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:04:30 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:31 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:04:31 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:31 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:04:31 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:04:31 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:31 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:04:31 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_myfunctions"]', 'Base')" 2021-12-14 00:04:31 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_myfunctions"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:31 - MenuPage - INFO - Element //*[@id="widget-carousel_myfunctions"] found." 2021-12-14 00:04:31 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_myfunctions"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:31 - BaseElement - INFO - Element //*[@id="widget-carousel_myfunctions"] found." 2021-12-14 00:04:31 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_myfunctions"]', 'Base')" 2021-12-14 00:04:31 - BaseElement - INFO - Trying to click element with xpath //*[@id="widget-carousel_myfunctions"]" 2021-12-14 00:04:32 - BaseElement - INFO - Element with xpath //*[@id="widget-carousel_myfunctions"] was clicked" 2021-12-14 00:04:32 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Central']/ancestor::span//button", 'Button')" 2021-12-14 00:04:32 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:35 - AssetTemplatesPage - INFO - Element //*[text()='Central']/ancestor::span//button found." 2021-12-14 00:04:35 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:35 - Button - INFO - Element //*[text()='Central']/ancestor::span//button found." 2021-12-14 00:04:35 - AssetTemplatesPage - INFO - Found element ("//*[text()='Central']/ancestor::span//button", 'Button')" 2021-12-14 00:04:35 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:35 - Button - INFO - Element //*[text()='Central']/ancestor::span//button found." -------------------------------Captured log call-------------------------------- 2021-12-14 00:04:35 - AssetTemplatesPage - INFO - Trying to format the element ("//*[text()='{}']/ancestor::span//table", 'Table') with data ('Central',)" 2021-12-14 00:04:35 - AssetTemplatesPage - INFO - Trying to find component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 00:04:35 - AssetTemplatesPage - INFO - Found component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 00:04:36 - AssetTemplatesPage - INFO - Trying to format the element ("//*[text()='{}']/ancestor::span//table", 'Table') with data ('Central',)" 2021-12-14 00:04:36 - AssetTemplatesPage - INFO - Trying to find component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 00:04:36 - AssetTemplatesPage - INFO - Found component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 00:04:36 - Table - INFO - Trying to find element ('//*[text()=\'Central\']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:04:36 - Table - INFO - Waiting for element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:36 - Table - INFO - Element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] found." 2021-12-14 00:04:36 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:36 - Button - INFO - Element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] found." 2021-12-14 00:04:36 - Table - INFO - Found element ('//*[text()=\'Central\']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:04:36 - Button - INFO - Trying to click element with xpath //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")]" 2021-12-14 00:04:36 - Button - INFO - Element with xpath //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:04:36 - AssetTemplatesPage - INFO - Trying to find element ("//a[text()='Points']//ancestor::li", 'Base')" 2021-12-14 00:04:36 - AssetTemplatesPage - INFO - Waiting for element //a[text()='Points']//ancestor::li with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:36 - AssetTemplatesPage - INFO - Element //a[text()='Points']//ancestor::li found." 2021-12-14 00:04:36 - BaseElement - INFO - Waiting for element //a[text()='Points']//ancestor::li with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:36 - BaseElement - INFO - Element //a[text()='Points']//ancestor::li found." 2021-12-14 00:04:36 - AssetTemplatesPage - INFO - Found element ("//a[text()='Points']//ancestor::li", 'Base')" 2021-12-14 00:04:36 - BaseElement - INFO - Trying to click element with xpath //a[text()='Points']//ancestor::li" 2021-12-14 00:04:36 - BaseElement - INFO - Element with xpath //a[text()='Points']//ancestor::li was clicked" 2021-12-14 00:04:36 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:04:36 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:36 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:04:36 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:36 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:04:36 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:04:36 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:04:37 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:04:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:04:37 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:37 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:04:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:04:37 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:04:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//div[@class='ReactModalPortal']//i[contains(@class, 'close_24')]", 'Button')" 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Element //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] found." 2021-12-14 00:05:03 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:03 - Button - INFO - Element //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] found." 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Found element ("//div[@class='ReactModalPortal']//i[contains(@class, 'close_24')]", 'Button')" 2021-12-14 00:05:03 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')]" 2021-12-14 00:05:03 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] was clicked" 2021-12-14 00:05:03 - Button - INFO - Waiting for element to disappear //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] with poll frequency 0.1 and timeout 5" 2021-12-14 00:05:03 - Button - INFO - Element //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] disappeared." 2021-12-14 00:05:03 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:03 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:03 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:03 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:03 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:03 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:03 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:05:03 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 00:05:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 00:05:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 00:05:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. found." 2021-12-14 00:05:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 00:05:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm'] was clicked" 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC']", 'Base')" 2021-12-14 00:05:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC'] found." 2021-12-14 00:05:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC'] found." 2021-12-14 00:05:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC']", 'Base')" 2021-12-14 00:05:04 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC']" 2021-12-14 00:05:04 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC'] was clicked" 2021-12-14 00:05:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:05:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:05:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:05 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:05 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:05 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:05 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:05 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:05:05 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:05:05 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:05:05 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:05 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:05:05 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:05:06 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:05:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:05:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:05:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:05:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:05:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:06 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:06 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:05:06 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:05:06 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:05:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:05:11 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:11 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:11 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:11 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:11 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:11 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:11 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:05:12 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 00:05:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 00:05:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 00:05:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. found." 2021-12-14 00:05:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 00:05:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm'] was clicked" 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO']", 'Base')" 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO'] found." 2021-12-14 00:05:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO'] found." 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO']", 'Base')" 2021-12-14 00:05:12 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO']" 2021-12-14 00:05:12 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO'] was clicked" 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:05:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:05:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:05:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:05:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:05:14 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:14 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:05:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:05:14 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:05:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:05:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:14 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:05:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:14 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:14 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:05:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:05:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:14 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:14 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:14 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:14 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:05:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:05:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:05:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:05:19 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:19 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:19 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:19 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:19 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:19 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:19 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:05:19 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:05:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:19 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:19 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:19 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 00:05:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 00:05:19 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:19 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 00:05:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 00:05:19 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 00:05:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. found." 2021-12-14 00:05:19 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 00:05:19 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm'] was clicked" 2021-12-14 00:05:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault']", 'Base')" 2021-12-14 00:05:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault'] found." 2021-12-14 00:05:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault'] found." 2021-12-14 00:05:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault']", 'Base')" 2021-12-14 00:05:19 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault']" 2021-12-14 00:05:20 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault'] was clicked" 2021-12-14 00:05:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:20 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:05:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:05:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:21 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:21 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:21 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:21 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:21 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:05:21 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:05:21 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:05:21 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:21 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:05:21 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:05:21 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:05:21 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:21 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:21 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:21 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:21 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:05:21 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:21 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:05:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:21 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:21 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:21 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:05:21 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:05:21 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:21 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:21 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:21 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:22 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:22 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:05:22 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:05:22 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:05:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:05:24 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:24 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:24 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:24 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:24 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:24 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:24 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:05:24 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:05:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:24 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:24 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:24 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:24 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:24 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:24 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:24 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 00:05:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:24 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 00:05:24 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:24 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 00:05:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 00:05:24 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 00:05:24 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:24 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. found." 2021-12-14 00:05:24 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 00:05:24 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm'] was clicked" 2021-12-14 00:05:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire']", 'Base')" 2021-12-14 00:05:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:24 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire'] found." 2021-12-14 00:05:24 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:25 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire'] found." 2021-12-14 00:05:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire']", 'Base')" 2021-12-14 00:05:25 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire']" 2021-12-14 00:05:25 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire'] was clicked" 2021-12-14 00:05:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:25 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:25 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:25 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:25 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:05:25 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:25 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:05:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:05:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:05:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:05:26 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:26 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:05:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:05:26 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:05:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:05:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:05:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:05:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:05:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:05:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:05:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:05:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:05:30 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:30 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:30 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:30 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:30 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:30 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:30 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:05:30 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:05:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:30 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:30 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:30 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 00:05:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 00:05:30 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:30 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 00:05:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 00:05:30 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 00:05:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. found." 2021-12-14 00:05:30 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 00:05:30 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm'] was clicked" 2021-12-14 00:05:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off']", 'Base')" 2021-12-14 00:05:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off'] found." 2021-12-14 00:05:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off'] found." 2021-12-14 00:05:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off']", 'Base')" 2021-12-14 00:05:30 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off']" 2021-12-14 00:05:31 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off'] was clicked" 2021-12-14 00:05:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:05:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:05:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:05:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:05:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:05:32 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:32 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:05:32 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:05:32 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:05:32 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:32 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:32 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:32 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:32 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:05:32 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:32 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:05:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:32 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:32 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:32 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:05:32 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:05:32 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:32 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:32 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:32 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:32 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:32 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:32 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:05:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:05:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:05:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:05:36 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:36 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:36 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:36 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:36 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:36 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:36 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:05:36 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:05:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:05:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:05:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:05:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:05:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']", 'Expandable')" 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] found." 2021-12-14 00:05:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] found." 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']", 'Expandable')" 2021-12-14 00:05:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']" 2021-12-14 00:05:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/.. found." 2021-12-14 00:05:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']" 2021-12-14 00:05:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] was clicked" 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day']", 'Base')" 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day'] found." 2021-12-14 00:05:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day'] found." 2021-12-14 00:05:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day']", 'Base')" 2021-12-14 00:05:36 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day']" 2021-12-14 00:05:37 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day'] was clicked" 2021-12-14 00:05:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:37 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:37 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:37 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:37 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:05:37 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:37 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:05:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:38 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:38 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:38 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:38 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:38 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:05:38 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:05:38 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:05:38 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:38 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:05:38 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:05:39 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:05:39 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:39 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:39 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:39 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:39 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:05:39 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:39 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:05:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:39 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:39 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:39 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:05:39 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:05:39 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:39 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:39 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:39 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:39 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:39 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:05:39 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:05:39 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:05:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:05:42 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:42 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:42 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:42 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:42 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:42 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:42 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:05:42 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:05:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:42 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:05:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:05:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:42 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:05:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:05:42 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:05:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:05:42 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:05:42 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:05:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']", 'Expandable')" 2021-12-14 00:05:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] found." 2021-12-14 00:05:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:42 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] found." 2021-12-14 00:05:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']", 'Expandable')" 2021-12-14 00:05:42 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']" 2021-12-14 00:05:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/.. found." 2021-12-14 00:05:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']" 2021-12-14 00:05:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] was clicked" 2021-12-14 00:05:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month']", 'Base')" 2021-12-14 00:05:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month'] found." 2021-12-14 00:05:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month'] found." 2021-12-14 00:05:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month']", 'Base')" 2021-12-14 00:05:43 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month']" 2021-12-14 00:05:43 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month'] was clicked" 2021-12-14 00:05:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:43 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:43 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:43 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:43 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:05:43 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:43 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:05:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:45 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:45 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:45 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:45 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:45 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:05:45 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:05:45 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:05:45 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:45 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:05:45 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:05:45 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:05:45 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:45 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:45 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:45 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:45 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:05:45 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:45 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:05:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:45 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:45 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:45 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:05:45 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:05:45 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:45 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:45 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:45 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:45 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:45 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:05:46 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:05:46 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:05:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:05:48 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:48 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:48 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:48 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:48 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:48 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:48 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:05:48 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:05:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:48 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:48 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:48 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:05:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:48 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:05:48 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:48 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:05:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:05:48 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:05:48 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:48 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:05:48 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:05:48 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:05:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']", 'Expandable')" 2021-12-14 00:05:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] found." 2021-12-14 00:05:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] found." 2021-12-14 00:05:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']", 'Expandable')" 2021-12-14 00:05:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']" 2021-12-14 00:05:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/.. found." 2021-12-14 00:05:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']" 2021-12-14 00:05:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] was clicked" 2021-12-14 00:05:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year']", 'Base')" 2021-12-14 00:05:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year'] found." 2021-12-14 00:05:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year'] found." 2021-12-14 00:05:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year']", 'Base')" 2021-12-14 00:05:49 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year']" 2021-12-14 00:05:49 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year'] was clicked" 2021-12-14 00:05:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:49 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:49 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:05:49 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:49 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:05:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:51 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:51 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:51 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:51 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:51 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:05:51 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:05:51 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:05:51 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:51 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:05:51 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:05:51 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:05:51 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:51 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:51 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:51 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:51 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:05:51 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:51 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:05:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:51 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:52 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:52 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:05:52 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:05:52 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:52 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:52 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:52 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:05:52 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:05:52 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:05:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:05:56 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:56 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:56 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:56 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:56 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:05:56 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:05:56 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:05:56 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:05:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:56 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:56 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:56 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:05:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:05:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:05:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:05:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:05:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:05:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:05:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:05:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:05:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:05:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 00:05:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 00:05:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 00:05:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 00:05:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 00:05:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. found." 2021-12-14 00:05:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 00:05:57 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] was clicked" 2021-12-14 00:05:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season']", 'Base')" 2021-12-14 00:05:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:57 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season'] found." 2021-12-14 00:05:57 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:57 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season'] found." 2021-12-14 00:05:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season']", 'Base')" 2021-12-14 00:05:57 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season']" 2021-12-14 00:05:57 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season'] was clicked" 2021-12-14 00:05:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:57 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:57 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:57 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:05:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:05:57 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:05:57 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:57 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:05:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:59 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:59 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:59 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:05:59 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:05:59 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:05:59 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:05:59 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:05:59 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:59 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:05:59 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:05:59 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:05:59 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:05:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:05:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:05:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:05:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:05:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:05:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:05:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:05:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:05:59 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:59 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:05:59 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:59 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:05:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:05:59 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:05:59 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:06:00 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:06:00 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:06:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:06:03 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:06:03 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:03 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:06:03 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:03 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:06:03 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:06:03 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:06:03 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:06:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:06:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:06:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:06:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:06:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:06:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:06:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:06:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:06:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:06:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:06:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:06:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:06:04 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:06:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 00:06:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 00:06:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 00:06:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 00:06:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 00:06:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. found." 2021-12-14 00:06:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 00:06:04 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] was clicked" 2021-12-14 00:06:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start']", 'Base')" 2021-12-14 00:06:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start'] found." 2021-12-14 00:06:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start'] found." 2021-12-14 00:06:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start']", 'Base')" 2021-12-14 00:06:04 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start']" 2021-12-14 00:06:04 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start'] was clicked" 2021-12-14 00:06:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:06:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:06:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:06:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:06:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:06:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:06:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:06:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:06:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:06:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:06:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:06:07 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:06:07 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:06:07 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:07 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:06:07 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:06:07 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:06:07 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:06:07 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:06:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:06:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:06:07 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:07 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:06:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:06:07 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:06:07 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:07 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:06:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:06:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:06:07 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:07 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:06:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:06:07 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:06:07 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:06:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:06:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:06:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:06:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:06:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:06:08 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:06:08 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:06:38 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:38 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:06:38 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:06:38 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 00:06:38 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 00:06:38 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]" 2021-12-14 00:06:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] was clicked" 2021-12-14 00:06:38 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:06:38 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:38 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:06:38 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:38 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:06:38 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:06:38 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:06:38 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:06:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:06:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:06:38 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:38 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:06:38 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:06:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:06:38 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:06:38 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 00:06:38 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:39 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 00:06:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 00:06:39 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 00:06:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. found." 2021-12-14 00:06:39 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 00:06:39 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] was clicked" 2021-12-14 00:06:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End']", 'Base')" 2021-12-14 00:06:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End'] found." 2021-12-14 00:06:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End'] found." 2021-12-14 00:06:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End']", 'Base')" 2021-12-14 00:06:39 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End']" 2021-12-14 00:06:39 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End'] was clicked" 2021-12-14 00:06:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:06:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:39 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:06:39 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:39 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:06:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:06:39 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:06:39 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:39 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:06:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:06:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:41 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:06:41 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:41 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:06:41 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:06:41 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:06:41 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:06:41 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:06:41 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:41 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:06:41 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:06:41 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:06:41 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:06:41 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:06:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:06:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:06:42 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:42 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:06:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:06:42 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:06:42 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:42 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:06:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:06:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:06:42 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:42 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:06:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:06:42 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:06:42 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:06:42 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:06:42 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:06:42 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:06:42 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:06:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:06:42 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:06:42 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:06:42 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:06:42 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:07:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:07:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:07:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:07:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:07:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:07:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:07:12 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 00:07:12 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:12 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 00:07:12 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 00:07:12 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 00:07:12 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]" 2021-12-14 00:07:13 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] was clicked" 2021-12-14 00:07:13 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:07:13 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:13 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:07:13 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:13 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:07:13 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:07:13 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:07:13 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:07:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:07:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:07:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:07:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:07:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:07:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:07:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 00:07:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 00:07:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 00:07:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. found." 2021-12-14 00:07:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 00:07:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] was clicked" 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start']", 'Base')" 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start'] found." 2021-12-14 00:07:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start'] found." 2021-12-14 00:07:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start']", 'Base')" 2021-12-14 00:07:13 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start']" 2021-12-14 00:07:14 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start'] was clicked" 2021-12-14 00:07:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:07:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:14 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:07:14 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:14 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:07:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:07:14 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:07:14 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:14 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:07:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:07:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:16 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:07:16 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:16 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:07:16 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:07:16 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:07:16 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:07:16 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:07:16 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:16 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:07:16 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:07:16 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:07:16 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:07:16 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:07:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:07:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:07:16 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:16 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:07:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:07:16 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:07:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:07:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:07:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:07:16 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:16 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:07:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:07:16 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:07:17 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:07:17 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:07:17 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:17 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:07:17 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:07:17 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:07:17 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:07:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:07:17 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:07:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:07:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:47 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:07:47 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:47 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:07:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:07:47 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:07:47 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:47 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:07:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 00:07:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 00:07:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 00:07:47 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 00:07:47 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]" 2021-12-14 00:07:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] was clicked" 2021-12-14 00:07:47 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:07:47 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:47 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:07:47 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:47 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:07:47 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:07:47 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:07:47 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:07:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:07:47 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:07:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:07:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:07:48 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:48 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:07:48 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:07:48 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:48 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:07:48 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:07:48 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 00:07:48 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:48 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 00:07:48 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 00:07:48 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:48 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. found." 2021-12-14 00:07:48 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 00:07:48 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] was clicked" 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End']", 'Base')" 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End'] found." 2021-12-14 00:07:48 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:48 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End'] found." 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End']", 'Base')" 2021-12-14 00:07:48 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End']" 2021-12-14 00:07:48 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End'] was clicked" 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:48 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:07:48 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:07:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:07:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:07:49 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:49 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:07:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:07:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:51 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:07:51 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:51 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:07:51 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:07:51 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:07:51 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:07:51 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:07:51 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:51 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:07:51 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:07:51 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:07:51 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:07:51 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:07:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:07:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:07:51 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:51 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:07:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:07:51 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:07:51 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:51 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:07:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:07:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:07:51 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:51 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:07:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:07:51 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:07:51 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:07:51 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:07:51 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:07:51 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:07:51 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:07:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:07:51 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:07:51 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:07:52 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:07:52 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:08:22 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:22 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:08:22 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:08:22 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:22 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 00:08:22 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 00:08:22 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]" 2021-12-14 00:08:22 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] was clicked" 2021-12-14 00:08:22 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:08:22 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:22 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:08:22 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:22 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:08:22 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:08:22 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:08:22 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:08:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:08:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:08:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:08:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:08:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:08:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:08:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:23 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:08:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:08:23 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:08:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 00:08:23 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:08:23 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 00:08:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours']", 'Base')" 2021-12-14 00:08:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours'] found." 2021-12-14 00:08:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours'] found." 2021-12-14 00:08:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours']", 'Base')" 2021-12-14 00:08:23 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours']" 2021-12-14 00:08:23 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours'] was clicked" 2021-12-14 00:08:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:08:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:08:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:08:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:08:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:08:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:08:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:08:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:08:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:08:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:08:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:08:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:08:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:08:25 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:25 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:08:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:08:25 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:08:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:08:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:08:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:08:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:08:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:08:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:08:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:08:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:08:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:08:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:08:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:08:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:08:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:08:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:08:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:08:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:08:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:08:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:08:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:08:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:08:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:08:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:08:29 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:08:29 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:29 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:08:29 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:29 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:08:29 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:08:29 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:08:30 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:08:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:08:30 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:30 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:08:30 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:08:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:08:30 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:08:30 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:08:30 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:30 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:08:30 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:08:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 00:08:30 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:08:30 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes']", 'Base')" 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes'] found." 2021-12-14 00:08:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes'] found." 2021-12-14 00:08:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes']", 'Base')" 2021-12-14 00:08:30 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes']" 2021-12-14 00:08:31 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes'] was clicked" 2021-12-14 00:08:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:08:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:08:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:08:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:08:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:08:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:08:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:08:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:33 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:08:33 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:33 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:08:33 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:08:33 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:08:33 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:08:33 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:08:33 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:33 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:08:33 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:08:33 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:08:33 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:08:33 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:08:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:08:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:08:33 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:33 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:08:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:08:33 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:08:33 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:33 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:08:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:08:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:08:33 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:33 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:08:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:08:33 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:08:34 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:08:34 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:08:34 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:34 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:08:34 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:08:34 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:08:34 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:08:34 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:08:34 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:08:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:08:37 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:08:37 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:37 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:08:37 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:37 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:08:37 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:08:37 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:08:37 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:08:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:08:37 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:37 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:37 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:08:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:08:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:08:37 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:37 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:08:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:08:37 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:08:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:08:37 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:08:37 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:08:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:08:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:08:38 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:38 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:08:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:08:38 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:08:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 00:08:38 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:08:38 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 00:08:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds']", 'Base')" 2021-12-14 00:08:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds'] found." 2021-12-14 00:08:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds'] found." 2021-12-14 00:08:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds']", 'Base')" 2021-12-14 00:08:38 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds']" 2021-12-14 00:08:38 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds'] was clicked" 2021-12-14 00:08:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:08:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:38 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:08:38 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:38 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:08:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:08:38 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:08:38 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:08:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:08:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:40 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:08:40 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:40 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:08:40 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:08:40 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:08:40 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:08:40 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:08:40 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:40 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:08:40 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:08:41 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:08:41 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:08:41 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:08:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:08:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:08:41 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:41 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:08:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:08:41 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:08:41 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:41 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:08:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:08:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:08:41 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:41 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:08:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:08:41 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:08:41 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:08:41 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:08:41 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:41 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:08:41 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:08:41 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:08:41 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:08:41 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:08:41 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:08:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:08:44 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:08:44 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:44 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:08:44 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:44 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:08:44 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:08:44 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:08:44 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:08:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:08:44 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:44 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:44 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:08:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:08:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:44 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:08:44 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:44 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:08:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:08:44 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:08:44 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:44 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:08:44 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:08:44 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:08:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:08:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:44 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:08:44 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:44 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:08:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:08:44 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:08:44 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:44 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 00:08:44 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:08:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 00:08:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed']", 'Base')" 2021-12-14 00:08:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed'] found." 2021-12-14 00:08:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed'] found." 2021-12-14 00:08:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed']", 'Base')" 2021-12-14 00:08:45 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed']" 2021-12-14 00:08:45 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed'] was clicked" 2021-12-14 00:08:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:08:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:45 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:08:45 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:45 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:08:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:08:45 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:08:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:08:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:08:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:47 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:08:47 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:47 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:08:47 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:08:47 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:08:47 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:08:47 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:08:47 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:47 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:08:47 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:08:47 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:08:47 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:08:47 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:08:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:08:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:08:47 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:47 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:08:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:08:47 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:08:48 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:48 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:08:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:08:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:08:48 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:48 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:08:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:08:48 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:08:48 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:08:48 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:08:48 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:48 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:08:48 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:08:48 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:08:48 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:08:48 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:08:48 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:08:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:08:51 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:08:51 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:51 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:08:51 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:51 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:08:51 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:08:51 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:08:51 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:08:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:08:51 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:51 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:08:51 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:08:51 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:51 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:08:51 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:08:51 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:08:51 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:51 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:08:51 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:08:51 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:51 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 00:08:51 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:08:51 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp']", 'Base')" 2021-12-14 00:08:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp'] found." 2021-12-14 00:08:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp'] found." 2021-12-14 00:08:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp']", 'Base')" 2021-12-14 00:08:52 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp']" 2021-12-14 00:08:52 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp'] was clicked" 2021-12-14 00:08:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:08:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:52 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:08:52 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:52 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:08:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:08:52 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:08:52 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:52 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:08:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:08:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:54 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:08:54 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:54 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:08:54 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:08:54 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:08:54 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:08:54 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:08:54 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:54 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:08:54 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:08:54 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:08:54 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:08:54 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:08:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:08:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:08:55 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:55 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:08:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:08:55 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:08:55 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:55 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:08:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:08:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:08:55 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:55 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:08:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:08:55 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:08:55 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:08:55 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:08:55 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:55 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:08:55 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:08:55 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:08:55 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:08:55 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:08:55 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:08:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:08:58 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:08:58 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:58 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:08:58 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:58 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:08:58 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:08:58 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:08:58 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:08:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:08:58 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:58 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:58 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:08:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:08:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:08:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:58 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:08:58 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:58 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:08:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:08:58 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:08:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:08:59 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:08:59 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:08:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:08:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:08:59 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:59 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:08:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:08:59 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:08:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 00:08:59 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:08:59 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 00:08:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone']", 'Base')" 2021-12-14 00:08:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:08:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone'] found." 2021-12-14 00:08:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:08:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone'] found." 2021-12-14 00:08:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone']", 'Base')" 2021-12-14 00:08:59 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone']" 2021-12-14 00:08:59 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone'] was clicked" 2021-12-14 00:08:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:08:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:09:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:09:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:02 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:02 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:02 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:02 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:02 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:09:02 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:09:02 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:09:02 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:02 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:09:02 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:09:02 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:09:02 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:02 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:02 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:02 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:02 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:09:02 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:02 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:09:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:02 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:02 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:02 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:09:02 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:09:02 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:02 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:02 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:02 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:02 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:02 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:09:03 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:09:03 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:09:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:09:05 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:05 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:05 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:05 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:05 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:05 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:05 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:09:05 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:09:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:05 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:05 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:05 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:09:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:05 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:09:05 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:05 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:09:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:09:05 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:09:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:09:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:09:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:09:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:09:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:09:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:09:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:09:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:09:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 00:09:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:09:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 00:09:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay']", 'Base')" 2021-12-14 00:09:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay'] found." 2021-12-14 00:09:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay'] found." 2021-12-14 00:09:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay']", 'Base')" 2021-12-14 00:09:06 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay']" 2021-12-14 00:09:06 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay'] was clicked" 2021-12-14 00:09:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:09:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:09:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:09:08 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:09:08 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:09:08 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:08 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:09:08 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:09:08 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:09:08 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:08 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:08 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:08 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:09:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:09:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:09 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:09 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:09 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:09:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:09:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:09:09 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:09:09 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:09:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:09:12 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:12 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:12 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:12 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:12 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:12 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:12 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:09:12 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:09:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 00:09:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:09:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 00:09:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 00:09:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:09:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 00:09:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:09:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 00:09:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 00:09:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time']", 'Base')" 2021-12-14 00:09:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time'] found." 2021-12-14 00:09:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time'] found." 2021-12-14 00:09:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time']", 'Base')" 2021-12-14 00:09:13 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time']" 2021-12-14 00:09:13 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time'] was clicked" 2021-12-14 00:09:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:09:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:09:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:15 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:15 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:15 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:15 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:15 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:09:15 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:09:15 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:09:15 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:15 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:09:15 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:09:15 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:09:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:15 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:15 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:15 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:15 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:09:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:09:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:16 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:16 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:16 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:09:16 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:09:16 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:16 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:16 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:16 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:16 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:16 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:09:16 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:09:16 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:09:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:09:19 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:19 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:20 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:20 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:20 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:20 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:20 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:09:20 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:09:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:09:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:09:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:09:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:09:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact']", 'Base')" 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact'] found." 2021-12-14 00:09:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact'] found." 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact']", 'Base')" 2021-12-14 00:09:20 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact']" 2021-12-14 00:09:20 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact'] was clicked" 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:09:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:09:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:23 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:23 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:23 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:23 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:23 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:09:23 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:09:23 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:09:23 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:23 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:09:23 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:09:24 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:09:24 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:24 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:24 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:24 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:24 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:09:24 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:24 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:09:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:24 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:24 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:24 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:09:24 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:09:24 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:24 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:24 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:24 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:24 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:24 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:09:24 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:09:24 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:09:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:09:27 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:27 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:27 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:27 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:27 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:27 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:27 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:09:27 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:09:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:27 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:27 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:27 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:09:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:09:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:09:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:09:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:09:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:09:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:09:28 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:09:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug']", 'Base')" 2021-12-14 00:09:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug'] found." 2021-12-14 00:09:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug'] found." 2021-12-14 00:09:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug']", 'Base')" 2021-12-14 00:09:28 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug']" 2021-12-14 00:09:28 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug'] was clicked" 2021-12-14 00:09:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:09:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:09:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:30 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:30 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:30 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:30 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:30 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:09:30 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:09:30 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:09:30 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:30 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:09:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:09:30 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:09:30 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:30 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:30 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:30 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:30 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:09:30 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:30 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:09:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:30 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:30 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:30 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:09:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:09:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:31 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:31 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:09:31 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:09:31 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:09:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:09:34 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:34 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:34 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:34 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:34 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:34 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:34 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:09:34 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:09:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:09:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:09:34 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:09:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:09:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:09:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:09:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:09:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:09:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 00:09:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 00:09:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 00:09:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 00:09:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 00:09:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. found." 2021-12-14 00:09:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 00:09:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] was clicked" 2021-12-14 00:09:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle']", 'Base')" 2021-12-14 00:09:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] found." 2021-12-14 00:09:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] found." 2021-12-14 00:09:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle']", 'Base')" 2021-12-14 00:09:35 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle']" 2021-12-14 00:09:35 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] was clicked" 2021-12-14 00:09:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:09:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:09:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:38 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:38 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:38 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:38 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:09:38 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:09:38 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:09:38 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:38 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:09:38 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:09:38 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:09:38 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:38 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:38 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:38 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:38 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:09:38 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:38 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:09:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:38 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:38 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:38 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:09:38 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:09:38 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:38 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:38 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:38 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:38 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:38 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:09:39 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:09:39 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:09:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:09:43 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:43 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:43 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:43 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:43 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:43 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:43 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:09:43 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:09:43 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:43 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:43 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:43 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:43 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:43 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:43 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:43 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:09:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:09:43 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:43 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:09:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:09:43 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:09:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:09:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:09:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:09:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 00:09:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:44 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 00:09:44 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:44 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 00:09:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 00:09:44 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 00:09:44 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:44 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. found." 2021-12-14 00:09:44 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 00:09:44 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] was clicked" 2021-12-14 00:09:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic']", 'Base')" 2021-12-14 00:09:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:44 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] found." 2021-12-14 00:09:44 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:44 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] found." 2021-12-14 00:09:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic']", 'Base')" 2021-12-14 00:09:44 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic']" 2021-12-14 00:09:44 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] was clicked" 2021-12-14 00:09:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:09:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:09:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:47 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:47 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:47 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:47 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:47 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:09:47 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:09:47 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:09:47 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:47 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:09:47 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:09:47 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:09:47 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:47 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:47 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:47 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:47 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:09:47 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:47 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:09:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:48 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:48 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:48 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:09:48 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:09:48 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:48 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:48 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:48 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:48 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:48 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:09:48 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:09:48 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:09:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:09:51 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:51 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:51 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:51 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:51 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:09:51 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:09:51 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:09:51 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:09:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:51 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:09:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:09:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:09:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:09:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:09:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:09:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 00:09:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 00:09:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 00:09:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. found." 2021-12-14 00:09:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 00:09:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] was clicked" 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current']", 'Base')" 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current'] found." 2021-12-14 00:09:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current'] found." 2021-12-14 00:09:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current']", 'Base')" 2021-12-14 00:09:52 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current']" 2021-12-14 00:09:53 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current'] was clicked" 2021-12-14 00:09:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:09:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:09:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:09:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:09:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:56 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:56 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:56 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:09:56 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:09:56 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:09:56 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:09:56 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:09:56 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:56 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:09:56 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:09:56 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:09:56 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:56 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:09:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:56 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:56 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:09:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:09:56 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:09:56 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:56 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:09:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:56 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:56 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:09:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:09:56 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:09:56 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:09:56 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:56 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:09:56 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:56 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:09:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:09:56 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:09:56 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:09:57 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:09:57 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:10:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:10:01 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:01 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:01 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:01 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:01 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:01 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:01 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:10:01 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:10:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:01 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:01 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:01 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:01 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:10:02 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:02 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:10:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 00:10:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 00:10:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 00:10:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 00:10:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 00:10:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. found." 2021-12-14 00:10:02 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 00:10:02 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] was clicked" 2021-12-14 00:10:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance']", 'Base')" 2021-12-14 00:10:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance'] found." 2021-12-14 00:10:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance'] found." 2021-12-14 00:10:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance']", 'Base')" 2021-12-14 00:10:02 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance']" 2021-12-14 00:10:02 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance'] was clicked" 2021-12-14 00:10:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:10:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:10:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:04 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:04 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:04 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:04 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:04 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:10:05 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:10:05 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:10:05 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:05 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:10:05 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:10:05 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:10:05 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:05 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:05 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:05 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:05 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:10:05 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:05 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:10:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:05 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:05 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:05 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:10:05 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:10:05 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:05 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:05 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:05 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:05 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:05 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:10:06 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:10:06 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:10:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:10:09 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:09 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:09 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:09 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:09 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:09 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:09 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:10:10 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:10:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 00:10:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 00:10:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 00:10:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. found." 2021-12-14 00:10:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 00:10:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] was clicked" 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency']", 'Base')" 2021-12-14 00:10:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency'] found." 2021-12-14 00:10:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency'] found." 2021-12-14 00:10:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency']", 'Base')" 2021-12-14 00:10:11 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency']" 2021-12-14 00:10:11 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency'] was clicked" 2021-12-14 00:10:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:10:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:10:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:10:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:10:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:10:15 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:15 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:10:15 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:10:15 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:10:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:15 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:15 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:15 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:15 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:10:15 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:15 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:10:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:15 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:15 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:15 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:10:15 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:10:15 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:15 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:15 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:15 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:15 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:15 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:10:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:10:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:10:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:10:20 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:20 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:20 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:20 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:20 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:20 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:20 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:10:20 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:10:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 00:10:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 00:10:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 00:10:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. found." 2021-12-14 00:10:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 00:10:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] was clicked" 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load']", 'Base')" 2021-12-14 00:10:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load'] found." 2021-12-14 00:10:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load'] found." 2021-12-14 00:10:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load']", 'Base')" 2021-12-14 00:10:21 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load']" 2021-12-14 00:10:21 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load'] was clicked" 2021-12-14 00:10:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:10:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:10:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:23 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:23 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:23 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:23 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:23 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:10:23 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:10:23 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:10:23 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:23 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:10:23 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:10:23 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:10:23 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:23 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:23 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:23 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:23 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:10:24 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:24 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:10:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:24 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:24 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:24 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:10:24 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:10:24 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:24 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:24 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:24 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:24 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:24 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:10:25 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:10:25 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:10:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:10:29 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:29 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:29 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:29 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:29 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:29 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:29 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:10:29 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:10:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:29 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:29 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:29 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:10:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:10:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 00:10:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 00:10:30 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:30 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 00:10:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 00:10:30 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 00:10:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. found." 2021-12-14 00:10:30 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 00:10:30 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] was clicked" 2021-12-14 00:10:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power']", 'Base')" 2021-12-14 00:10:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power'] found." 2021-12-14 00:10:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power'] found." 2021-12-14 00:10:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power']", 'Base')" 2021-12-14 00:10:30 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power']" 2021-12-14 00:10:30 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power'] was clicked" 2021-12-14 00:10:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:10:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:10:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:34 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:34 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:34 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:10:34 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:10:34 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:10:34 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:34 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:10:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:10:34 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:10:34 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:34 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:34 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:34 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:34 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:10:34 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:34 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:10:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:34 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:34 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:34 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:10:34 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:10:34 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:34 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:34 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:34 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:34 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:34 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:10:35 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:10:35 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:10:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:10:38 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:38 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:38 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:38 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:38 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:38 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:38 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:10:39 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:39 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:39 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:39 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:10:39 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:39 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 00:10:39 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:39 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 00:10:39 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 00:10:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. found." 2021-12-14 00:10:39 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 00:10:39 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] was clicked" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor']", 'Base')" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor'] found." 2021-12-14 00:10:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor'] found." 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor']", 'Base')" 2021-12-14 00:10:39 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor']" 2021-12-14 00:10:39 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor'] was clicked" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:39 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:39 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:39 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:10:39 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:10:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:42 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:42 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:42 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:42 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:42 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:10:42 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:10:42 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:10:42 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:42 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:10:42 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:10:42 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:10:42 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:42 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:42 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:42 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:42 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:10:42 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:42 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:10:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:42 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:42 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:42 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:10:42 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:10:42 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:42 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:42 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:42 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:42 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:42 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:10:43 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:10:43 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:10:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:10:46 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:46 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:46 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:46 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:46 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:46 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:46 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:10:46 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:10:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 00:10:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 00:10:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 00:10:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. found." 2021-12-14 00:10:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 00:10:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] was clicked" 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power']", 'Base')" 2021-12-14 00:10:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power'] found." 2021-12-14 00:10:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power'] found." 2021-12-14 00:10:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power']", 'Base')" 2021-12-14 00:10:47 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power']" 2021-12-14 00:10:47 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power'] was clicked" 2021-12-14 00:10:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:47 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:47 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:47 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:47 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:10:47 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:47 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:10:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:50 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:50 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:50 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:50 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:50 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:10:50 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:10:50 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:10:50 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:50 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:10:50 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:10:50 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:10:50 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:50 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:50 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:50 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:50 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:10:50 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:50 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:10:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:50 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:50 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:50 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:10:50 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:10:50 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:50 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:50 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:50 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:50 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:50 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:10:51 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:10:51 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:10:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:10:54 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:54 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:54 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:54 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:54 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:10:54 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:10:54 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:10:54 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:10:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:54 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:54 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:10:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:55 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:55 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:10:55 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:10:55 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:10:55 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 00:10:55 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:55 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 00:10:55 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 00:10:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. found." 2021-12-14 00:10:55 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 00:10:55 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] was clicked" 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power']", 'Base')" 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power'] found." 2021-12-14 00:10:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power'] found." 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power']", 'Base')" 2021-12-14 00:10:55 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power']" 2021-12-14 00:10:55 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power'] was clicked" 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:10:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:10:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:10:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:10:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:58 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:58 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:10:58 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:10:58 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:10:58 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:10:58 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:10:58 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:58 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:10:58 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:10:58 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:10:58 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:58 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:10:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:58 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:58 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:10:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:10:58 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:10:58 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:58 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:10:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:10:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:10:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:10:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:10:59 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:59 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:10:59 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:59 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:10:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:10:59 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:10:59 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:10:59 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:10:59 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:11:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:11:03 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:03 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:03 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:03 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:03 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:03 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:03 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:11:03 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:11:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:11:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:11:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:11:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:11:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:11:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:11:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:11:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:11:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 00:11:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 00:11:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 00:11:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 00:11:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 00:11:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. found." 2021-12-14 00:11:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 00:11:04 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] was clicked" 2021-12-14 00:11:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle']", 'Base')" 2021-12-14 00:11:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle'] found." 2021-12-14 00:11:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle'] found." 2021-12-14 00:11:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle']", 'Base')" 2021-12-14 00:11:04 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle']" 2021-12-14 00:11:04 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle'] was clicked" 2021-12-14 00:11:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:11:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:11:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:07 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:07 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:07 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:07 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:07 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:11:07 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:11:07 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:11:07 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:07 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:11:07 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:11:07 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:11:07 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:07 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:08 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:08 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:08 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:11:08 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:08 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:11:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:08 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:08 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:08 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:11:08 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:11:08 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:11:08 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:08 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:11:08 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:11:08 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:11:08 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:11:08 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:11:08 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:11:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:11:12 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:12 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:12 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:12 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:12 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:12 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:12 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:11:12 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:11:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:11:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:11:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:11:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:11:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:11:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']", 'Expandable')" 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] found." 2021-12-14 00:11:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] found." 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']", 'Expandable')" 2021-12-14 00:11:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']" 2021-12-14 00:11:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/.. found." 2021-12-14 00:11:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']" 2021-12-14 00:11:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] was clicked" 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic']", 'Base')" 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] found." 2021-12-14 00:11:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] found." 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic']", 'Base')" 2021-12-14 00:11:13 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic']" 2021-12-14 00:11:13 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] was clicked" 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:11:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:11:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:15 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:15 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:15 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:15 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:15 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:11:15 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:11:15 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:11:15 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:16 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:11:16 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:11:16 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:11:16 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:16 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:16 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:16 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:16 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:11:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:11:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:16 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:16 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:16 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:11:16 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:11:16 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:11:16 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:16 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:11:16 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:11:16 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:11:16 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:11:16 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:11:16 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:11:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:11:20 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:20 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:20 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:20 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:20 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:20 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:20 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:11:20 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:11:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:20 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:20 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:20 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:11:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:11:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:11:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:11:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:11:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:11:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:11:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:11:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']", 'Expandable')" 2021-12-14 00:11:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] found." 2021-12-14 00:11:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] found." 2021-12-14 00:11:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']", 'Expandable')" 2021-12-14 00:11:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']" 2021-12-14 00:11:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/.. found." 2021-12-14 00:11:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']" 2021-12-14 00:11:21 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] was clicked" 2021-12-14 00:11:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage']", 'Base')" 2021-12-14 00:11:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage'] found." 2021-12-14 00:11:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage'] found." 2021-12-14 00:11:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage']", 'Base')" 2021-12-14 00:11:21 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage']" 2021-12-14 00:11:21 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage'] was clicked" 2021-12-14 00:11:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:11:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:11:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:23 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:23 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:23 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:23 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:23 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:11:23 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:11:23 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:11:23 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:23 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:11:23 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:11:23 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:11:23 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:23 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:23 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:23 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:23 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:11:23 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:23 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:11:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:23 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:23 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:23 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:11:24 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:11:24 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:11:24 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:24 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:11:24 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:11:24 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:11:24 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:11:24 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:11:24 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:11:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:11:27 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:27 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:27 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:27 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:27 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:27 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:27 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:11:27 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:11:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:27 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:27 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:27 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:11:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:11:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 00:11:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 00:11:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:11:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 00:11:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 00:11:27 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 00:11:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']", 'Expandable')" 2021-12-14 00:11:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] found." 2021-12-14 00:11:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] found." 2021-12-14 00:11:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']", 'Expandable')" 2021-12-14 00:11:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']" 2021-12-14 00:11:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/.. found." 2021-12-14 00:11:28 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']" 2021-12-14 00:11:28 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] was clicked" 2021-12-14 00:11:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle']", 'Base')" 2021-12-14 00:11:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] found." 2021-12-14 00:11:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] found." 2021-12-14 00:11:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle']", 'Base')" 2021-12-14 00:11:28 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle']" 2021-12-14 00:11:28 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] was clicked" 2021-12-14 00:11:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:11:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:11:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:30 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:30 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:30 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:30 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:30 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:11:30 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:11:30 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:11:30 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:30 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:11:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:11:30 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:11:30 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:30 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:30 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:30 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:30 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:11:30 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:30 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:11:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:31 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:31 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:31 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:11:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:11:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:11:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:11:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:11:31 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:11:31 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:11:31 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:11:31 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:11:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:11:35 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:35 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:35 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:35 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:35 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:35 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:35 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:11:35 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:11:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:35 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:35 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:35 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:11:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:11:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:11:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:11:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:11:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:11:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:11:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:11:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:11:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:11:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:11:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:11:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:11:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 00:11:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:11:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 00:11:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power']", 'Base')" 2021-12-14 00:11:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power'] found." 2021-12-14 00:11:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power'] found." 2021-12-14 00:11:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power']", 'Base')" 2021-12-14 00:11:36 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power']" 2021-12-14 00:11:36 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power'] was clicked" 2021-12-14 00:11:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:36 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:36 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:36 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:36 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:11:36 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:36 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:11:39 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:39 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:39 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:39 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:39 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:39 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:11:39 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:11:39 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:11:39 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:39 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:11:39 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:11:40 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:11:40 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:40 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:40 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:40 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:40 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:11:40 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:40 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:11:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:40 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:40 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:40 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:11:40 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:11:40 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:11:40 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:40 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:11:40 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:11:40 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:11:40 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:11:40 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:11:40 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:11:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:11:44 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:44 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:44 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:44 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:44 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:44 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:44 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:11:45 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:11:45 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:45 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:11:45 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:11:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:11:45 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:11:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:11:45 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:45 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:11:45 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:11:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 00:11:45 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:11:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status']", 'Base')" 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status'] found." 2021-12-14 00:11:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status'] found." 2021-12-14 00:11:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status']", 'Base')" 2021-12-14 00:11:45 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status']" 2021-12-14 00:11:46 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status'] was clicked" 2021-12-14 00:11:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:46 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:46 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:46 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:46 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:11:46 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:46 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:11:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:48 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:48 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:48 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:48 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:48 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:11:49 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:11:49 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:11:49 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:49 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:11:49 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:11:49 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:11:49 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:49 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:49 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:49 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:49 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:11:49 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:49 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:11:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:49 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:49 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:49 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:11:49 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:11:49 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:11:49 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:49 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:11:49 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:11:49 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:11:49 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:11:50 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:11:50 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:11:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:11:54 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:54 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:54 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:54 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:54 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:11:54 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:11:54 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:11:54 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:11:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:54 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:54 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:54 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:11:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:11:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:11:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:11:54 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:54 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:11:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:11:54 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:11:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:11:55 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:11:55 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:11:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:11:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:11:55 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:55 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:11:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:11:55 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:11:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 00:11:55 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:11:55 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 00:11:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power']", 'Base')" 2021-12-14 00:11:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power'] found." 2021-12-14 00:11:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power'] found." 2021-12-14 00:11:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power']", 'Base')" 2021-12-14 00:11:55 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power']" 2021-12-14 00:11:55 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power'] was clicked" 2021-12-14 00:11:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:11:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:11:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:11:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:11:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:59 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:59 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:59 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:11:59 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:11:59 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:11:59 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:11:59 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:11:59 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:59 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:11:59 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:11:59 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:11:59 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:11:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:11:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:11:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:11:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:11:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:11:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:11:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:11:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:11:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:12:00 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:12:00 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:00 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:00 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:00 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:00 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:00 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:12:00 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:12:00 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:12:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:12:05 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:05 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:05 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:05 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:05 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:05 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:05 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:12:05 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:05 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:05 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:05 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:05 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:12:05 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:05 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:12:05 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:05 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:12:05 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:12:05 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 00:12:05 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:12:05 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status']", 'Base')" 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status'] found." 2021-12-14 00:12:05 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status'] found." 2021-12-14 00:12:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status']", 'Base')" 2021-12-14 00:12:05 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status']" 2021-12-14 00:12:06 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status'] was clicked" 2021-12-14 00:12:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:12:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:12:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:12:08 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:12:08 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:12:08 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:08 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:12:08 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:12:08 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:12:08 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:08 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:08 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:08 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:08 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:12:08 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:08 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:12:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:08 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:08 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:08 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:12:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:12:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:12:09 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:12:09 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:12:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:12:12 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:12 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:12 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:12 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:12 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:12 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:12 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:12:12 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:12:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:12:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:12:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:12:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:12:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:12:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:12:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:12:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 00:12:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:12:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 00:12:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water']", 'Base')" 2021-12-14 00:12:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water'] found." 2021-12-14 00:12:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water'] found." 2021-12-14 00:12:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water']", 'Base')" 2021-12-14 00:12:13 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water']" 2021-12-14 00:12:13 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water'] was clicked" 2021-12-14 00:12:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:12:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:12:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:16 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:16 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:16 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:16 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:16 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:12:16 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:12:16 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:12:16 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:16 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:12:16 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:12:16 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:12:16 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:16 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:16 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:16 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:16 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:12:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:12:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:16 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:16 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:16 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:12:16 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:12:16 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:16 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:16 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:16 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:16 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:16 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:12:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:12:17 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:12:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:12:20 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:20 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:20 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:20 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:20 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:20 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:20 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:12:20 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:12:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:12:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:12:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:12:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 00:12:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:12:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water']", 'Base')" 2021-12-14 00:12:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water'] found." 2021-12-14 00:12:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water'] found." 2021-12-14 00:12:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water']", 'Base')" 2021-12-14 00:12:21 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water']" 2021-12-14 00:12:21 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water'] was clicked" 2021-12-14 00:12:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:12:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:12:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:23 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:23 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:23 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:23 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:23 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:12:24 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:12:24 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:12:24 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:24 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:12:24 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:12:24 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:12:24 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:24 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:24 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:24 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:24 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:12:24 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:24 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:12:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:24 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:24 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:24 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:12:24 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:12:24 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:24 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:24 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:24 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:24 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:24 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:12:25 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:12:25 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:12:28 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:12:28 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:28 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:28 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:28 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:28 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:28 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:28 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:12:28 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:12:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:28 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:28 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:28 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:12:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:12:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:12:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:12:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 00:12:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 00:12:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:12:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 00:12:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 00:12:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 00:12:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water']", 'Base')" 2021-12-14 00:12:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water'] found." 2021-12-14 00:12:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water'] found." 2021-12-14 00:12:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water']", 'Base')" 2021-12-14 00:12:29 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water']" 2021-12-14 00:12:29 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water'] was clicked" 2021-12-14 00:12:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:12:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:12:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:12:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:12:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:12:32 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:32 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:12:32 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:12:33 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:12:33 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:33 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:33 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:33 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:33 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:12:33 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:33 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:12:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:33 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:33 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:33 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:12:33 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:12:33 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:33 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:33 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:33 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:33 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:33 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:12:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:12:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:12:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:12:37 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:37 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:37 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:37 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:37 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:37 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:37 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:12:37 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:12:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:37 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:37 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:37 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:37 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:37 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:37 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:12:37 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:37 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:12:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:12:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:12:37 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:37 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:12:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:12:37 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:12:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:12:38 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:12:38 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:12:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode']", 'Base')" 2021-12-14 00:12:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode'] found." 2021-12-14 00:12:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode'] found." 2021-12-14 00:12:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode']", 'Base')" 2021-12-14 00:12:38 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode']" 2021-12-14 00:12:38 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode'] was clicked" 2021-12-14 00:12:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:38 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:38 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:38 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:38 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:12:38 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:12:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:41 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:41 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:41 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:41 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:41 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:12:41 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:12:41 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:12:41 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:41 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:12:41 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:12:41 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:12:41 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:41 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:41 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:41 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:41 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:12:41 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:41 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:12:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:42 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:42 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:42 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:12:42 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:12:42 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:42 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:42 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:42 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:42 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:42 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:12:42 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:12:42 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:12:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:12:45 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:45 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:45 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:46 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:46 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:46 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:46 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:12:46 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:12:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:12:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:12:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:12:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:12:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:12:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:12:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:12:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:12:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:12:47 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:12:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position']", 'Base')" 2021-12-14 00:12:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position'] found." 2021-12-14 00:12:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position'] found." 2021-12-14 00:12:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position']", 'Base')" 2021-12-14 00:12:47 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position']" 2021-12-14 00:12:48 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position'] was clicked" 2021-12-14 00:12:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:48 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:48 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:48 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:48 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:12:48 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:48 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:12:50 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:50 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:50 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:50 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:50 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:50 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:12:50 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:12:50 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:12:50 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:50 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:12:50 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:12:50 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:12:50 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:50 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:50 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:50 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:50 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:12:50 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:50 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:12:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:50 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:50 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:50 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:12:50 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:12:50 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:50 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:50 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:50 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:50 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:50 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:12:51 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:12:51 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:12:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:12:54 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:54 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:54 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:54 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:54 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:12:54 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:12:54 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:12:54 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:12:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:54 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:54 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:54 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:12:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:12:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:54 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:54 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:12:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:12:54 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:12:54 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:12:54 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:12:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:12:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:12:54 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:54 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:12:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:12:54 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:12:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:12:54 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:12:55 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:12:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response']", 'Base')" 2021-12-14 00:12:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response'] found." 2021-12-14 00:12:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response'] found." 2021-12-14 00:12:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response']", 'Base')" 2021-12-14 00:12:55 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response']" 2021-12-14 00:12:55 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response'] was clicked" 2021-12-14 00:12:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:12:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:12:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:12:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:12:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:57 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:57 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:57 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:12:57 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:12:57 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:12:57 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:12:57 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:12:57 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:57 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:12:57 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:12:57 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:12:57 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:57 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:12:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:57 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:57 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:12:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:12:57 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:12:57 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:58 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:12:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:58 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:58 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:12:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:12:58 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:12:58 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:12:58 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:58 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:12:58 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:58 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:12:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:12:58 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:12:58 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:12:58 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:12:58 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:13:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:13:02 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:02 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:02 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:02 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:02 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:02 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:02 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:13:02 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:13:02 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:02 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:13:02 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:02 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed']", 'Base')" 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed'] found." 2021-12-14 00:13:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed'] found." 2021-12-14 00:13:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed']", 'Base')" 2021-12-14 00:13:02 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed']" 2021-12-14 00:13:03 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed'] was clicked" 2021-12-14 00:13:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:13:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:13:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:05 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:05 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:05 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:05 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:05 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:13:05 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:13:05 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:13:05 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:05 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:13:05 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:13:05 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:13:05 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:05 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:05 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:05 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:05 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:13:05 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:05 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:13:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:05 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:05 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:05 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:13:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:13:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:06 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:06 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:13:06 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:13:06 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:13:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:13:10 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:10 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:10 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:10 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:10 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:10 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:10 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:13:10 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:13:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:10 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:10 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:10 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:13:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:13:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:13:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:11 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:13:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation']", 'Base')" 2021-12-14 00:13:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation'] found." 2021-12-14 00:13:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation'] found." 2021-12-14 00:13:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation']", 'Base')" 2021-12-14 00:13:11 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation']" 2021-12-14 00:13:11 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation'] was clicked" 2021-12-14 00:13:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:13:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:13:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:13 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:13 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:13 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:13 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:13 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:13:13 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:13:13 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:13:14 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:14 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:13:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:13:14 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:13:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:13:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:14 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:13:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:14 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:14 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:13:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:13:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:14 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:14 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:14 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:14 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:13:14 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:13:14 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:13:18 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:13:18 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:18 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:18 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:18 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:18 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:18 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:18 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:13:18 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:18 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:18 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:18 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:18 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:18 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:18 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:18 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:18 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:18 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:13:18 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:18 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:18 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:18 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:18 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:18 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:18 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:13:18 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:18 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states']", 'Base')" 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:18 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states'] found." 2021-12-14 00:13:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states'] found." 2021-12-14 00:13:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states']", 'Base')" 2021-12-14 00:13:19 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states']" 2021-12-14 00:13:19 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states'] was clicked" 2021-12-14 00:13:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:19 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:19 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:19 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:19 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:13:19 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:19 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:13:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:21 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:21 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:21 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:21 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:21 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:13:22 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:13:22 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:13:22 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:22 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:13:22 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:13:22 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:13:22 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:22 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:22 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:22 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:22 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:13:22 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:22 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:13:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:22 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:22 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:22 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:13:22 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:13:22 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:22 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:22 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:22 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:22 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:22 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:13:23 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:13:23 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:13:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:13:26 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:26 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:26 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:26 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:26 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:26 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:26 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:13:26 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:13:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:26 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:26 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:26 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:26 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:26 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:26 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:13:26 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:26 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:13:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:26 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:26 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:26 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:13:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:27 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:13:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states']", 'Base')" 2021-12-14 00:13:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states'] found." 2021-12-14 00:13:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states'] found." 2021-12-14 00:13:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states']", 'Base')" 2021-12-14 00:13:27 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states']" 2021-12-14 00:13:27 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states'] was clicked" 2021-12-14 00:13:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:27 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:27 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:27 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:27 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:13:27 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:13:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:30 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:30 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:30 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:30 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:30 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:13:30 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:13:30 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:13:30 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:30 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:13:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:13:30 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:13:30 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:30 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:30 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:30 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:30 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:13:30 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:30 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:13:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:31 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:31 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:31 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:13:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:13:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:31 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:31 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:13:31 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:13:31 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:13:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:13:35 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:35 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:35 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:35 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:35 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:35 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:35 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:13:35 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:13:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:35 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:35 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:35 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:13:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:13:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:13:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:13:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State']", 'Base')" 2021-12-14 00:13:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State'] found." 2021-12-14 00:13:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State'] found." 2021-12-14 00:13:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State']", 'Base')" 2021-12-14 00:13:36 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State']" 2021-12-14 00:13:36 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State'] was clicked" 2021-12-14 00:13:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:36 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:36 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:36 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:36 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:13:36 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:37 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:13:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:40 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:40 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:40 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:40 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:40 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:13:41 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:13:41 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:13:41 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:41 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:13:41 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:13:41 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:13:41 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:41 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:41 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:41 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:41 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:13:41 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:41 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:13:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:41 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:41 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:41 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:13:42 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:13:42 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:42 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:42 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:42 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:42 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:42 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:13:42 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:13:42 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:13:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:13:45 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:45 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:45 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:45 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:45 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:45 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:45 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:13:45 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:13:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:45 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:13:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:13:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status']", 'Base')" 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status'] found." 2021-12-14 00:13:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status'] found." 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status']", 'Base')" 2021-12-14 00:13:46 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status']" 2021-12-14 00:13:46 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status'] was clicked" 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:46 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:46 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:46 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:13:47 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:47 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:13:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:49 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:49 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:49 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:49 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:49 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:13:49 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:13:49 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:13:49 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:49 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:13:49 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:13:49 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:13:49 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:49 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:49 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:49 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:49 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:13:49 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:49 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:13:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:49 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:49 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:49 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:13:49 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:13:49 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:49 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:49 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:49 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:49 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:49 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:13:50 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:13:50 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:13:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:13:53 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:53 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:53 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:53 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:53 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:13:53 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:13:53 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:13:53 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:13:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:53 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:53 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:53 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:13:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:13:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:53 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:53 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:53 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:13:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:13:53 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:53 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:53 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:13:53 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:13:54 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:13:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:54 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:54 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:13:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:13:54 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:13:54 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:13:54 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:13:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State']", 'Base')" 2021-12-14 00:13:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State'] found." 2021-12-14 00:13:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State'] found." 2021-12-14 00:13:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State']", 'Base')" 2021-12-14 00:13:54 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State']" 2021-12-14 00:13:54 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State'] was clicked" 2021-12-14 00:13:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:13:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:13:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:13:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:13:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:56 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:56 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:56 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:13:56 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:13:56 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:13:56 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:13:56 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:13:56 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:56 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:13:56 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:13:56 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:13:56 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:56 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:13:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:56 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:57 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:13:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:13:57 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:13:57 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:57 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:13:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:57 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:57 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:13:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:13:57 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:13:57 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:13:57 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:57 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:13:57 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:57 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:13:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:13:57 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:13:57 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:13:57 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:13:57 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:14:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:14:00 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:00 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:00 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:00 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:00 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:00 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:00 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:14:01 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:01 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:01 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:01 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:14:01 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:01 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:01 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:01 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:01 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:14:01 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:01 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode']", 'Base')" 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode'] found." 2021-12-14 00:14:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode'] found." 2021-12-14 00:14:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode']", 'Base')" 2021-12-14 00:14:01 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode']" 2021-12-14 00:14:02 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode'] was clicked" 2021-12-14 00:14:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:14:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:14:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:04 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:04 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:04 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:04 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:04 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:14:04 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:14:04 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:14:04 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:04 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:14:04 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:14:04 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:14:04 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:04 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:04 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:05 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:05 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:14:05 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:05 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:14:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:05 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:05 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:05 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:14:05 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:14:05 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:05 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:05 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:05 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:05 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:05 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:14:05 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:14:05 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:14:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:14:09 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:09 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:09 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:09 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:09 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:09 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:09 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:14:09 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:09 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:09 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:09 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:14:09 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:09 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:09 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:09 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:09 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:14:09 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:09 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type']", 'Base')" 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type'] found." 2021-12-14 00:14:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type'] found." 2021-12-14 00:14:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type']", 'Base')" 2021-12-14 00:14:10 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type']" 2021-12-14 00:14:10 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type'] was clicked" 2021-12-14 00:14:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:10 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:10 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:10 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:10 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:14:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:10 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:14:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:12 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:12 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:12 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:12 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:12 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:14:12 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:14:12 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:14:12 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:12 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:14:12 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:14:12 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:14:12 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:12 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:12 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:13 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:13 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:14:13 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:13 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:14:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:13 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:13 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:13 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:14:13 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:14:13 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:13 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:13 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:13 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:13 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:13 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:14:13 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:14:13 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:14:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:14:17 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:17 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:17 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:17 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:17 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:17 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:17 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:14:17 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:14:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:17 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:14:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:17 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed']", 'Base')" 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed'] found." 2021-12-14 00:14:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed'] found." 2021-12-14 00:14:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed']", 'Base')" 2021-12-14 00:14:17 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed']" 2021-12-14 00:14:18 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed'] was clicked" 2021-12-14 00:14:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:18 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:18 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:18 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:18 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:14:18 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:18 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:14:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:20 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:20 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:20 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:20 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:20 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:14:20 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:14:20 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:14:20 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:20 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:14:20 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:14:20 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:14:20 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:20 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:20 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:20 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:20 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:14:20 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:20 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:14:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:20 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:20 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:20 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:14:20 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:14:20 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:20 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:20 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:21 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:21 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:21 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:14:21 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:14:21 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:14:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:14:24 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:24 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:24 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:24 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:24 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:24 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:24 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:14:25 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:25 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:25 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:25 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:25 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:25 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:14:25 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:25 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:25 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:25 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:25 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:25 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:25 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:14:25 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:25 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover']", 'Base')" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover'] found." 2021-12-14 00:14:25 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:25 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover'] found." 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover']", 'Base')" 2021-12-14 00:14:25 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover']" 2021-12-14 00:14:25 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover'] was clicked" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:25 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:25 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:25 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:14:26 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:26 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:14:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:27 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:27 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:27 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:27 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:27 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:14:28 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:14:28 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:14:28 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:28 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:14:28 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:14:28 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:14:28 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:28 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:28 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:28 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:28 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:28 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:28 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:28 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:28 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:14:28 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:28 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:14:28 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:28 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:28 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:28 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:28 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:28 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:28 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:14:28 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:14:28 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:28 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:28 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:28 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:28 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:28 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:28 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:14:29 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:14:29 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:14:32 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:14:32 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:32 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:32 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:32 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:32 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:32 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:32 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:14:32 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:14:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:32 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:32 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:32 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:32 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:32 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:32 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:14:32 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:32 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:14:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:33 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:33 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:33 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:14:33 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:33 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:14:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost']", 'Base')" 2021-12-14 00:14:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost'] found." 2021-12-14 00:14:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost'] found." 2021-12-14 00:14:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost']", 'Base')" 2021-12-14 00:14:33 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost']" 2021-12-14 00:14:33 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost'] was clicked" 2021-12-14 00:14:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:14:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:33 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:14:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:35 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:35 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:35 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:35 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:35 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:14:35 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:14:35 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:14:35 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:35 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:14:35 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:14:35 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:14:35 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:35 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:35 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:35 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:35 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:14:35 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:35 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:14:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:36 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:36 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:36 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:14:36 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:14:36 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:36 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:36 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:36 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:36 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:36 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:14:36 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:14:36 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:14:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:14:40 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:40 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:40 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:40 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:40 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:40 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:40 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:14:40 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:40 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:40 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:40 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:14:40 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:40 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:40 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:40 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:40 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:14:40 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:40 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode']", 'Base')" 2021-12-14 00:14:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:41 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode'] found." 2021-12-14 00:14:41 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:41 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode'] found." 2021-12-14 00:14:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode']", 'Base')" 2021-12-14 00:14:41 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode']" 2021-12-14 00:14:41 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode'] was clicked" 2021-12-14 00:14:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:41 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:41 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:41 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:41 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:14:41 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:41 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:14:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:44 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:44 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:44 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:44 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:44 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:14:44 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:14:44 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:14:44 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:44 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:14:44 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:14:44 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:14:44 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:44 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:44 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:44 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:44 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:44 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:44 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:44 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:14:44 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:44 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:14:44 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:44 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:44 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:44 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:44 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:44 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:14:45 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:14:45 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:45 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:45 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:45 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:45 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:45 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:14:45 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:14:45 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:14:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:14:48 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:48 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:48 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:48 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:48 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:48 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:48 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:14:49 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:14:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:14:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status']", 'Base')" 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status'] found." 2021-12-14 00:14:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status'] found." 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status']", 'Base')" 2021-12-14 00:14:49 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status']" 2021-12-14 00:14:49 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status'] was clicked" 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:50 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:50 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:50 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:50 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:14:50 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:50 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:14:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:51 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:51 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:51 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:51 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:51 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:14:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:14:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:14:52 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:52 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:14:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:14:52 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:14:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:14:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:52 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:14:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:52 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:52 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:14:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:14:52 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:14:52 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:14:52 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:52 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:14:52 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:14:52 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:14:52 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:14:52 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:14:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:14:56 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:56 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:56 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:56 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:56 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:14:56 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:14:56 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:14:56 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:14:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:56 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:56 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:56 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:14:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:14:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:14:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:14:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:14:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:14:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:14:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:14:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:14:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:14:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:14:57 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:14:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State']", 'Base')" 2021-12-14 00:14:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:57 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State'] found." 2021-12-14 00:14:57 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:57 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State'] found." 2021-12-14 00:14:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State']", 'Base')" 2021-12-14 00:14:57 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State']" 2021-12-14 00:14:57 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State'] was clicked" 2021-12-14 00:14:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:57 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:57 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:57 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:14:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:14:57 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:14:57 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:57 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:14:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:59 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:59 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:59 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:14:59 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:14:59 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:14:59 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:14:59 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:14:59 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:59 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:14:59 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:14:59 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:14:59 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:14:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:14:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:14:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:14:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:14:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:14:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:15:00 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:00 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:00 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:00 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:00 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:00 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:00 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:15:00 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:15:00 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:00 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:00 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:00 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:00 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:00 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:15:00 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:15:00 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:15:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:15:04 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:04 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:04 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:04 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:04 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:04 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:04 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:15:04 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:15:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:04 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:15:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:04 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off']", 'Base')" 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off'] found." 2021-12-14 00:15:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off'] found." 2021-12-14 00:15:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off']", 'Base')" 2021-12-14 00:15:05 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off']" 2021-12-14 00:15:05 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off'] was clicked" 2021-12-14 00:15:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:05 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:05 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:05 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:05 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:15:05 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:05 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:15:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:07 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:07 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:07 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:07 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:07 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:15:07 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:15:07 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:15:07 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:07 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:15:07 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:15:07 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:15:07 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:07 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:07 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:07 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:07 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:15:07 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:07 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:15:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:07 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:07 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:07 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:15:07 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:15:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:15:08 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:15:08 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:15:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:15:11 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:11 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:11 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:11 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:11 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:11 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:11 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:15:11 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:15:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:11 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:15:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:15:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override']", 'Base')" 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override'] found." 2021-12-14 00:15:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override'] found." 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override']", 'Base')" 2021-12-14 00:15:12 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override']" 2021-12-14 00:15:12 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override'] was clicked" 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:15:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:15:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:15:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:15:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:15:15 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:15 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:15:15 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:15:15 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:15:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:15 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:15 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:15 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:15 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:15:15 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:15 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:15:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:15 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:15 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:15 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:15:15 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:15:15 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:15 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:15 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:15 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:15 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:15 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:15:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:15:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:15:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:15:19 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:19 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:19 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:19 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:19 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:19 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:19 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:15:19 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:15:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:19 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:19 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:19 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:19 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:19 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:19 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:15:19 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:19 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:15:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:19 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:15:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:15:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU']", 'Base')" 2021-12-14 00:15:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU'] found." 2021-12-14 00:15:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU'] found." 2021-12-14 00:15:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU']", 'Base')" 2021-12-14 00:15:20 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU']" 2021-12-14 00:15:20 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU'] was clicked" 2021-12-14 00:15:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:20 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:15:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:15:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:22 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:22 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:22 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:22 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:22 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:15:22 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:15:22 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:15:22 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:22 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:15:22 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:15:22 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:15:22 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:22 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:22 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:22 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:22 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:15:22 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:22 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:15:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:22 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:22 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:22 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:15:22 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:15:22 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:22 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:22 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:22 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:22 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:22 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:15:23 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:15:23 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:15:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:15:26 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:26 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:26 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:26 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:26 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:26 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:26 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:15:27 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:15:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:27 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:15:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:27 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain']", 'Base')" 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain'] found." 2021-12-14 00:15:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain'] found." 2021-12-14 00:15:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain']", 'Base')" 2021-12-14 00:15:27 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain']" 2021-12-14 00:15:28 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain'] was clicked" 2021-12-14 00:15:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:15:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:15:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:30 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:30 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:30 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:30 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:30 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:15:30 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:15:30 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:15:30 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:30 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:15:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:15:30 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:15:30 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:30 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:31 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:31 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:31 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:15:31 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:31 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:15:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:31 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:31 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:31 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:15:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:15:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:31 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:31 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:15:31 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:15:31 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:15:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:15:36 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:36 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:36 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:36 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:36 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:36 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:36 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:15:36 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:15:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:36 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:36 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:36 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:15:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:15:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:15:37 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:37 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:15:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean']", 'Base')" 2021-12-14 00:15:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean'] found." 2021-12-14 00:15:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean'] found." 2021-12-14 00:15:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean']", 'Base')" 2021-12-14 00:15:37 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean']" 2021-12-14 00:15:37 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean'] was clicked" 2021-12-14 00:15:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:37 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:37 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:37 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:37 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:15:37 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:37 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:15:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:40 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:40 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:40 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:40 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:40 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:15:40 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:15:40 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:15:40 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:40 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:15:40 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:15:41 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:15:41 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:41 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:41 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:41 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:41 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:15:41 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:41 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:15:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:41 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:41 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:41 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:15:41 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:15:41 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:41 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:41 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:41 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:41 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:41 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:15:42 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:15:42 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:15:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:15:46 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:46 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:46 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:46 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:46 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:46 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:46 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:15:46 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:15:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:15:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight']", 'Base')" 2021-12-14 00:15:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight'] found." 2021-12-14 00:15:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight'] found." 2021-12-14 00:15:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight']", 'Base')" 2021-12-14 00:15:47 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight']" 2021-12-14 00:15:47 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight'] was clicked" 2021-12-14 00:15:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:47 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:47 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:47 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:47 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:15:47 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:47 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:15:50 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:50 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:50 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:50 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:50 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:50 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:15:50 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:15:50 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:15:50 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:50 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:15:50 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:15:50 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:15:50 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:50 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:50 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:50 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:50 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:15:50 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:50 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:15:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:51 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:51 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:51 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:15:51 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:15:51 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:51 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:51 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:51 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:15:51 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:15:51 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:15:51 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:15:51 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:15:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:15:56 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:56 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:56 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:56 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:56 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:15:56 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:15:56 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:15:56 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:15:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:15:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:15:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:15:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:15:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:15:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 00:15:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status']", 'Base')" 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status'] found." 2021-12-14 00:15:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status'] found." 2021-12-14 00:15:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status']", 'Base')" 2021-12-14 00:15:56 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status']" 2021-12-14 00:15:57 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status'] was clicked" 2021-12-14 00:15:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:57 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:57 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:57 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:15:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:15:57 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:15:57 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:57 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:15:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:59 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:59 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:59 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:15:59 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:15:59 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:15:59 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:15:59 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:15:59 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:59 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:15:59 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:15:59 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:15:59 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:15:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:15:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:15:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:15:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:15:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:15:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:15:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:15:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:15:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:16:00 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:16:00 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:00 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:00 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:00 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:00 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:00 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:16:00 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:16:00 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:16:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:16:05 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:05 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:05 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:05 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:05 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:05 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:05 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:16:06 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:16:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']", 'Expandable')" 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] found." 2021-12-14 00:16:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] found." 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']", 'Expandable')" 2021-12-14 00:16:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']" 2021-12-14 00:16:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/.. found." 2021-12-14 00:16:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']" 2021-12-14 00:16:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] was clicked" 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds']", 'Base')" 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds'] found." 2021-12-14 00:16:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds'] found." 2021-12-14 00:16:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds']", 'Base')" 2021-12-14 00:16:06 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds']" 2021-12-14 00:16:07 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds'] was clicked" 2021-12-14 00:16:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:07 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:07 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:16:07 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:16:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:09 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:09 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:09 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:09 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:09 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:16:09 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:16:09 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:16:09 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:09 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:16:09 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:16:09 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:16:09 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:09 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:09 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:16:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:16:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:09 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:09 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:09 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:16:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:16:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:16:10 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:16:10 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:16:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:16:13 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:13 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:13 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:13 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:13 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:13 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:13 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:16:14 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:14 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:14 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:14 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:14 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:14 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:14 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:14 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:14 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:14 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:16:14 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:14 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']", 'Expandable')" 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] found." 2021-12-14 00:16:14 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:14 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] found." 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']", 'Expandable')" 2021-12-14 00:16:14 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']" 2021-12-14 00:16:14 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:14 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/.. found." 2021-12-14 00:16:14 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']" 2021-12-14 00:16:14 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] was clicked" 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent']", 'Base')" 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent'] found." 2021-12-14 00:16:14 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:14 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent'] found." 2021-12-14 00:16:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent']", 'Base')" 2021-12-14 00:16:14 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent']" 2021-12-14 00:16:15 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent'] was clicked" 2021-12-14 00:16:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:15 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:15 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:15 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:15 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:16:15 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:15 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:16:17 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:17 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:17 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:17 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:17 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:17 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:16:17 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:16:17 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:16:17 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:17 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:16:17 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:16:17 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:16:17 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:17 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:17 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:17 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:17 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:16:17 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:17 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:16:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:17 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:17 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:17 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:16:17 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:16:17 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:17 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:17 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:17 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:17 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:17 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:16:18 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:16:18 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:16:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:16:21 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:21 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:21 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:21 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:21 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:21 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:21 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:16:22 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:16:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']", 'Expandable')" 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] found." 2021-12-14 00:16:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] found." 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']", 'Expandable')" 2021-12-14 00:16:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']" 2021-12-14 00:16:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/.. found." 2021-12-14 00:16:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']" 2021-12-14 00:16:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] was clicked" 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop']", 'Base')" 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop'] found." 2021-12-14 00:16:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop'] found." 2021-12-14 00:16:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop']", 'Base')" 2021-12-14 00:16:22 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop']" 2021-12-14 00:16:23 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop'] was clicked" 2021-12-14 00:16:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:16:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:16:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:24 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:24 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:24 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:24 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:24 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:16:24 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:16:24 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:16:24 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:24 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:16:24 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:16:25 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:16:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:25 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:16:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:16:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:25 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:25 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:25 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:16:25 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:16:25 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:25 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:25 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:25 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:25 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:25 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:16:25 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:16:25 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:16:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:16:26 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:26 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:26 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:26 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:26 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:26 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:26 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:16:26 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:26 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:26 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:26 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:16:26 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:26 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:16:26 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:26 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:16:26 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:16:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 00:16:26 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:16:26 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume']", 'Base')" 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume'] found." 2021-12-14 00:16:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume'] found." 2021-12-14 00:16:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume']", 'Base')" 2021-12-14 00:16:27 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume']" 2021-12-14 00:16:27 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume'] was clicked" 2021-12-14 00:16:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:27 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:27 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:27 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:27 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:16:27 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:16:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:29 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:29 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:29 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:29 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:29 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:16:29 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:16:29 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:16:29 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:29 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:16:29 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:16:29 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:16:29 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:29 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:29 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:29 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:29 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:16:29 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:29 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:16:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:30 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:30 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:30 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:16:30 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:16:30 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:30 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:30 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:30 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:30 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:30 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:16:30 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:16:30 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:16:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:16:34 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:34 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:34 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:34 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:34 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:34 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:34 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:16:34 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:16:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:34 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:34 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:34 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:16:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:16:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:16:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:16:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:16:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:16:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:16:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 00:16:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:16:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 00:16:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake']", 'Base')" 2021-12-14 00:16:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake'] found." 2021-12-14 00:16:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake'] found." 2021-12-14 00:16:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake']", 'Base')" 2021-12-14 00:16:35 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake']" 2021-12-14 00:16:35 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake'] was clicked" 2021-12-14 00:16:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:36 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:36 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:36 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:36 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:16:36 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:36 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:16:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:38 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:38 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:38 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:38 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:38 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:16:38 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:16:38 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:16:38 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:38 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:16:38 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:16:38 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:16:38 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:38 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:38 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:38 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:38 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:16:38 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:38 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:16:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:39 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:39 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:39 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:16:39 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:16:39 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:39 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:39 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:39 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:39 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:39 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:16:39 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:16:39 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:16:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:16:44 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:44 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:44 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:44 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:44 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:44 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:44 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:16:44 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:44 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:44 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:44 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:44 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:44 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:16:44 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:44 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:16:44 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:44 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:16:44 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:16:44 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:44 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 00:16:44 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:16:44 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply']", 'Base')" 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply'] found." 2021-12-14 00:16:44 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:44 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply'] found." 2021-12-14 00:16:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply']", 'Base')" 2021-12-14 00:16:44 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply']" 2021-12-14 00:16:45 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply'] was clicked" 2021-12-14 00:16:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:45 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:45 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:45 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:45 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:16:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:16:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:47 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:47 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:47 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:47 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:47 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:16:48 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:16:48 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:16:48 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:48 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:16:48 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:16:48 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:16:48 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:48 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:48 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:48 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:48 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:16:48 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:48 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:16:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:48 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:48 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:48 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:16:48 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:16:48 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:48 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:48 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:48 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:48 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:48 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:16:49 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:16:49 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:16:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:16:53 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:53 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:53 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:53 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:53 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:16:53 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:16:53 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:16:53 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:16:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:53 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:53 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:53 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:16:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:16:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:53 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:53 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:53 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:16:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:16:53 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:53 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:53 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:16:53 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:16:53 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:16:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:16:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:16:54 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:54 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:16:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:16:54 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:16:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 00:16:54 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:16:54 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 00:16:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume']", 'Base')" 2021-12-14 00:16:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume'] found." 2021-12-14 00:16:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume'] found." 2021-12-14 00:16:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume']", 'Base')" 2021-12-14 00:16:54 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume']" 2021-12-14 00:16:54 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume'] was clicked" 2021-12-14 00:16:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:16:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:16:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:16:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:16:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:57 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:57 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:57 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:16:57 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:16:57 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:16:57 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:16:57 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:16:57 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:57 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:16:57 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:16:57 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:16:57 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:57 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:16:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:57 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:57 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:16:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:16:57 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:16:57 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:57 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:16:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:58 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:58 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:16:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:16:58 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:16:58 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:16:58 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:58 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:16:58 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:58 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:16:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:16:58 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:16:58 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:16:58 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:16:58 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:17:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:17:03 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:17:03 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:03 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:17:03 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:03 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:17:03 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:17:03 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:17:03 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:17:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:17:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:17:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:17:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:17:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:17:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:17:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:17:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:17:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 00:17:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:17:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point']", 'Base')" 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point'] found." 2021-12-14 00:17:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point'] found." 2021-12-14 00:17:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point']", 'Base')" 2021-12-14 00:17:04 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point']" 2021-12-14 00:17:04 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point'] was clicked" 2021-12-14 00:17:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:17:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:17:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:17:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:17:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:17:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:17:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:17:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:07 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:17:07 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:07 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:17:07 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:17:07 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:17:07 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:17:07 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:17:07 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:07 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:17:07 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:17:07 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:17:07 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:17:07 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:17:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:17:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:17:07 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:07 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:17:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:17:07 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:17:07 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:07 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:17:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:17:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:17:08 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:08 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:17:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:17:08 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:17:08 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:17:08 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:17:08 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:08 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:17:08 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:17:08 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:17:08 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:17:08 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:17:08 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:17:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:17:14 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:17:14 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:14 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:17:14 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:14 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:17:14 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:17:14 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:17:14 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:17:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:17:14 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:14 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:14 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:15 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:17:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:17:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:15 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:17:15 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:15 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:17:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:17:15 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:17:15 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:15 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:17:15 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:17:15 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:17:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:17:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:15 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:17:15 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:15 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:17:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:17:15 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:17:15 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:15 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 00:17:15 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:17:15 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 00:17:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling']", 'Base')" 2021-12-14 00:17:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:15 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling'] found." 2021-12-14 00:17:15 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:15 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling'] found." 2021-12-14 00:17:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling']", 'Base')" 2021-12-14 00:17:15 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling']" 2021-12-14 00:17:16 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling'] was clicked" 2021-12-14 00:17:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:17:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:16 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:17:16 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:16 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:17:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:17:16 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:17:16 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:16 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:17:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:17:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:19 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:17:19 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:19 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:17:19 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:17:19 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:17:19 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:17:19 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:17:19 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:19 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:17:19 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:17:19 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:17:19 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:17:19 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:17:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:17:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:17:20 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:20 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:17:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:17:20 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:17:20 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:20 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:17:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:17:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:17:20 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:20 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:17:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:17:20 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:17:20 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:17:20 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:17:20 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:20 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:17:20 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:17:20 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:17:20 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:17:20 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:17:20 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:17:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:17:25 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:17:25 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:25 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:17:25 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:25 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:17:25 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:17:25 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:17:26 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:17:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:17:26 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:26 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:17:26 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:17:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:17:26 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:17:26 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:17:26 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:26 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:17:26 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:17:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 00:17:26 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:17:26 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating']", 'Base')" 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating'] found." 2021-12-14 00:17:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating'] found." 2021-12-14 00:17:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating']", 'Base')" 2021-12-14 00:17:26 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating']" 2021-12-14 00:17:27 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating'] was clicked" 2021-12-14 00:17:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:17:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:27 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:17:27 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:27 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:17:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:17:27 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:17:27 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:17:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:17:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:29 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:17:29 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:29 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:17:29 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:17:29 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:17:29 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:17:29 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:17:29 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:29 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:17:29 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:17:29 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:17:29 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:17:29 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:17:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:17:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:17:29 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:29 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:17:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:17:29 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:17:29 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:29 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:17:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:17:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:17:29 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:29 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:17:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:17:29 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:17:30 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:17:30 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:17:30 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:30 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:17:30 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:17:30 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:17:30 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:17:30 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:17:30 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:17:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:17:34 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:17:34 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:34 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:17:34 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:34 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:17:34 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:17:34 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:17:34 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:17:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:17:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:17:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:17:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:17:34 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:34 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:17:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:17:34 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:17:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:17:34 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:17:34 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:17:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:17:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:17:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:17:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:17:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:17:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 00:17:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:17:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 00:17:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation']", 'Base')" 2021-12-14 00:17:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation'] found." 2021-12-14 00:17:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation'] found." 2021-12-14 00:17:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation']", 'Base')" 2021-12-14 00:17:35 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation']" 2021-12-14 00:17:35 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation'] was clicked" 2021-12-14 00:17:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:17:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:17:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:17:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:17:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:17:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:17:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:17:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:17:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:17:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:17:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:17:38 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:17:38 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:17:38 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:38 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:17:38 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:17:38 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:17:38 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:17:38 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:17:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:17:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:17:38 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:38 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:17:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:17:38 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:17:38 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:38 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:17:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:17:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:17:38 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:38 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:17:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:17:38 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:17:38 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:17:38 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:17:38 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:38 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:17:38 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:17:38 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:17:38 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:17:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:17:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:17:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:17:42 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:17:42 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:42 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:17:42 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:42 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:17:42 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:17:42 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:17:43 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:43 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:43 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:17:43 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:43 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:17:43 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:43 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:17:43 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:17:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:17:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:17:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:17:43 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:43 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:17:43 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:17:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 00:17:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:17:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied']", 'Base')" 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied'] found." 2021-12-14 00:17:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied'] found." 2021-12-14 00:17:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied']", 'Base')" 2021-12-14 00:17:43 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied']" 2021-12-14 00:17:44 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied'] was clicked" 2021-12-14 00:17:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:17:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:17:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:17:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:17:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:17:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:17:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:17:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:17:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:17:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:17:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:17:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:17:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:17:46 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:46 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:17:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:17:46 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:17:46 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:17:46 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:17:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:17:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:17:46 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:46 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:17:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:17:46 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:17:46 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:46 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:17:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:17:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:17:46 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:46 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:17:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:17:46 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:17:47 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:17:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:17:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:17:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:17:47 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:17:47 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:17:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:17:47 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:17:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:17:51 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:17:51 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:51 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:17:51 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:51 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:17:51 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:17:51 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:17:52 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:17:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:17:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:17:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:17:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:17:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:17:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:17:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:17:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:17:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 00:17:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:17:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied']", 'Base')" 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied'] found." 2021-12-14 00:17:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied'] found." 2021-12-14 00:17:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied']", 'Base')" 2021-12-14 00:17:52 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied']" 2021-12-14 00:17:53 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied'] was clicked" 2021-12-14 00:17:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:17:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:17:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:17:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:17:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:17:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:17:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:17:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:55 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:17:55 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:55 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:17:55 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:17:55 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:17:55 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:17:55 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:17:55 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:55 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:17:55 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:17:55 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:17:55 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:17:55 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:17:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:17:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:17:55 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:55 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:17:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:17:55 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:17:55 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:55 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:17:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:17:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:17:56 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:56 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:17:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:17:56 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:17:56 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:17:56 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:17:56 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:17:56 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:17:56 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:17:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:17:56 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:17:56 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:17:56 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:17:56 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:18:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:18:01 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:18:01 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:01 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:18:01 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:01 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:18:01 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:18:01 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:18:02 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:18:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:18:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:18:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:18:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:18:02 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:18:02 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:18:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:18:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:18:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 00:18:02 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:18:02 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby']", 'Base')" 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby'] found." 2021-12-14 00:18:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby'] found." 2021-12-14 00:18:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby']", 'Base')" 2021-12-14 00:18:02 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby']" 2021-12-14 00:18:03 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby'] was clicked" 2021-12-14 00:18:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:18:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:18:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:18:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:18:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:18:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:18:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:18:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:05 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:18:05 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:05 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:18:05 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:18:05 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:18:05 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:18:05 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:18:05 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:05 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:18:05 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:18:05 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:18:05 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:18:05 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:18:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:18:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:18:05 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:05 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:18:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:18:05 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:18:05 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:05 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:18:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:18:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:18:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:18:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:18:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:18:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:18:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:18:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:18:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:18:06 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:18:06 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:18:06 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:18:06 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:18:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:18:10 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:18:10 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:10 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:18:10 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:10 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:18:10 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:18:10 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:18:10 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:18:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:18:10 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:10 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:10 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:18:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:18:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:18:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:18:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:18:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:18:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:18:11 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:18:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:18:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:18:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 00:18:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:18:11 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum']", 'Base')" 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum'] found." 2021-12-14 00:18:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum'] found." 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum']", 'Base')" 2021-12-14 00:18:11 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum']" 2021-12-14 00:18:11 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum'] was clicked" 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:18:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:18:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:18:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:18:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:18:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:18:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:18:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:18:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:18:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:18:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:18:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:18:14 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:14 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:18:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:18:14 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:18:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:18:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:18:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:18:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:18:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:18:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:18:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:18:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:14 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:18:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:18:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:18:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:15 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:18:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:18:15 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:18:15 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:18:15 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:18:15 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:15 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:18:15 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:18:15 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:18:15 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:18:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:18:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:18:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:18:21 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:18:21 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:21 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:18:21 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:21 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:18:21 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:18:21 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:18:21 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:21 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:18:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:21 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:18:21 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:21 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:18:21 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:18:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:18:21 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:18:21 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:18:21 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:21 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 00:18:21 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:18:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 00:18:21 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 00:18:21 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum']", 'Base')" 2021-12-14 00:18:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum'] found." 2021-12-14 00:18:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum'] found." 2021-12-14 00:18:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum']", 'Base')" 2021-12-14 00:18:22 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum']" 2021-12-14 00:18:22 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum'] was clicked" 2021-12-14 00:18:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:18:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:22 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:18:22 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:22 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:18:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:18:22 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:18:22 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:22 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:18:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:18:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:18:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:18:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:18:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:18:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:18:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:18:25 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:25 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:18:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:18:25 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:18:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:18:25 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:18:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:18:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:18:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:18:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:18:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:18:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:18:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:18:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:18:25 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:25 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:18:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:18:25 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:18:25 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:18:25 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:18:25 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:18:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:18:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:18:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:18:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:18:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:18:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:18:31 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:18:31 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:31 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:18:31 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:31 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:18:31 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:18:31 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:18:31 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:18:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:18:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:18:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:18:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:18:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:18:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:18:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:18:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:18:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:18:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:18:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 00:18:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 00:18:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 00:18:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 00:18:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 00:18:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. found." 2021-12-14 00:18:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 00:18:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] was clicked" 2021-12-14 00:18:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator']", 'Base')" 2021-12-14 00:18:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator'] found." 2021-12-14 00:18:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator'] found." 2021-12-14 00:18:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator']", 'Base')" 2021-12-14 00:18:32 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator']" 2021-12-14 00:18:32 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator'] was clicked" 2021-12-14 00:18:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:18:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:18:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:18:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:18:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:18:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:18:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:18:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:35 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:18:35 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:35 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:18:35 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:18:35 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:18:35 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:18:35 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:18:35 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:35 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:18:35 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:18:35 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:18:35 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:18:35 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:18:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:18:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:18:35 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:35 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:18:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:18:35 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:18:35 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:35 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:18:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:18:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:18:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:18:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:18:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:18:36 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:18:36 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:18:36 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:36 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:18:36 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:18:36 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:18:36 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:18:36 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:18:36 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:18:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:18:41 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:18:41 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:41 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:18:41 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:41 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:18:41 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:18:41 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:18:41 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:18:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:18:41 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:41 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:41 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:41 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:41 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:18:41 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:41 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:18:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:41 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:18:41 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:41 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:18:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:18:41 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:18:41 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:41 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:18:41 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:18:41 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:18:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 00:18:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 00:18:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:42 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 00:18:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 00:18:42 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 00:18:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. found." 2021-12-14 00:18:42 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 00:18:42 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] was clicked" 2021-12-14 00:18:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling']", 'Base')" 2021-12-14 00:18:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling'] found." 2021-12-14 00:18:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling'] found." 2021-12-14 00:18:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling']", 'Base')" 2021-12-14 00:18:42 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling']" 2021-12-14 00:18:42 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling'] was clicked" 2021-12-14 00:18:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:18:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:42 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:18:42 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:42 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:18:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:18:42 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:18:42 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:42 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:18:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:18:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:18:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:18:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:18:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:18:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:18:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:18:46 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:46 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:18:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:18:46 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:18:46 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:18:46 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:18:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:18:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:18:46 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:46 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:18:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:18:46 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:18:46 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:46 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:18:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:18:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:18:47 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:18:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:18:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:18:47 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:18:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:18:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:18:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:18:47 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:18:47 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:18:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:18:47 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:18:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:18:51 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:18:51 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:51 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:18:51 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:51 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:18:51 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:18:51 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:18:52 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:18:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:18:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:18:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:18:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:18:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:18:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 00:18:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 00:18:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 00:18:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. found." 2021-12-14 00:18:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 00:18:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] was clicked" 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating']", 'Base')" 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating'] found." 2021-12-14 00:18:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating'] found." 2021-12-14 00:18:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating']", 'Base')" 2021-12-14 00:18:52 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating']" 2021-12-14 00:18:53 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating'] was clicked" 2021-12-14 00:18:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:18:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:18:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:18:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:18:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:18:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:18:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:18:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:57 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:18:57 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:57 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:18:57 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:18:57 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:18:57 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:18:57 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:18:57 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:57 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:18:57 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:18:57 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:18:57 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:18:57 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:18:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:18:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:18:57 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:57 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:18:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:18:57 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:18:57 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:57 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:18:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:18:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:18:57 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:57 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:18:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:18:57 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:18:57 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:18:57 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:18:57 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:18:57 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:18:57 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:18:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:18:57 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:18:57 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:18:58 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:18:58 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:19:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:19:02 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:02 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:02 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:02 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:02 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:02 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:02 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:19:02 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:19:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:19:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:19:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:19:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:19:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:19:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:19:02 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:19:02 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:19:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 00:19:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 00:19:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 00:19:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 00:19:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 00:19:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. found." 2021-12-14 00:19:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 00:19:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] was clicked" 2021-12-14 00:19:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling']", 'Base')" 2021-12-14 00:19:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling'] found." 2021-12-14 00:19:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling'] found." 2021-12-14 00:19:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling']", 'Base')" 2021-12-14 00:19:03 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling']" 2021-12-14 00:19:03 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling'] was clicked" 2021-12-14 00:19:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:19:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:19:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:05 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:05 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:05 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:05 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:05 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:19:05 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:19:05 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:19:05 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:05 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:19:05 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:19:05 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:19:05 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:05 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:05 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:05 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:05 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:19:05 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:05 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:19:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:19:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:19:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:06 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:06 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:19:06 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:19:06 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:19:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:19:10 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:10 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:10 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:10 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:10 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:10 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:10 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:19:10 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:19:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:10 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:10 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:19:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:19:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:19:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:19:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:19:11 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 00:19:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 00:19:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 00:19:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. found." 2021-12-14 00:19:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 00:19:11 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] was clicked" 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating']", 'Base')" 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating'] found." 2021-12-14 00:19:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating'] found." 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating']", 'Base')" 2021-12-14 00:19:11 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating']" 2021-12-14 00:19:11 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating'] was clicked" 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:19:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:19:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:19:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:19:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:19:14 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:14 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:19:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:19:14 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:19:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:19:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:14 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:19:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:14 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:14 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:19:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:19:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:14 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:14 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:14 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:14 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:19:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:19:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:19:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:19:19 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:19 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:19 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:19 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:19 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:19 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:19 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:19:19 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:19:19 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:19 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 00:19:19 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:19:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 00:19:19 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 00:19:19 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 00:19:19 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:19 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 00:19:19 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 00:19:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. found." 2021-12-14 00:19:19 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 00:19:19 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] was clicked" 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator']", 'Base')" 2021-12-14 00:19:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator'] found." 2021-12-14 00:19:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator'] found." 2021-12-14 00:19:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator']", 'Base')" 2021-12-14 00:19:20 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator']" 2021-12-14 00:19:20 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator'] was clicked" 2021-12-14 00:19:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:20 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:19:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:19:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:22 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:22 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:22 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:22 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:22 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:19:22 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:19:22 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:19:22 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:22 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:19:22 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:19:22 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:19:22 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:22 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:22 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:22 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:22 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:19:22 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:22 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:19:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:22 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:22 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:22 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:19:23 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:19:23 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:23 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:23 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:23 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:23 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:23 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:19:23 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:19:23 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:19:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:19:27 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:27 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:27 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:27 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:27 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:27 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:27 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:19:27 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:19:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:27 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:27 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:27 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 00:19:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 00:19:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:28 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 00:19:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 00:19:28 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 00:19:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/.. found." 2021-12-14 00:19:28 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 00:19:28 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light'] was clicked" 2021-12-14 00:19:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu']", 'Base')" 2021-12-14 00:19:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu'] found." 2021-12-14 00:19:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu'] found." 2021-12-14 00:19:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu']", 'Base')" 2021-12-14 00:19:28 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu']" 2021-12-14 00:19:28 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu'] was clicked" 2021-12-14 00:19:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:19:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:19:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:29 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:29 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:29 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:29 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:29 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:19:29 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:19:29 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:19:30 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:30 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:19:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:19:30 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:19:30 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:30 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:30 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:30 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:30 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:19:30 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:30 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:19:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:30 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:30 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:30 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:19:30 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:19:30 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:30 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:30 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:30 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:30 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:30 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:19:31 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:19:31 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:19:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:19:35 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:35 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:35 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:35 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:35 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:35 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:35 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:19:35 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 00:19:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 00:19:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 00:19:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/.. found." 2021-12-14 00:19:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 00:19:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light'] was clicked" 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off']", 'Base')" 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off'] found." 2021-12-14 00:19:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off'] found." 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off']", 'Base')" 2021-12-14 00:19:35 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off']" 2021-12-14 00:19:35 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off'] was clicked" 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:36 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:36 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:36 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:36 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:19:36 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:36 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:19:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:19:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:19:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:19:37 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:37 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:19:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:19:37 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:19:37 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:37 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:37 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:37 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:37 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:19:37 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:37 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:19:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:19:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:19:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:19:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:19:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:19:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:19:42 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:42 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:42 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:42 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:42 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:42 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:42 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:19:42 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:19:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:42 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 00:19:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 00:19:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:42 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 00:19:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 00:19:42 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 00:19:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/.. found." 2021-12-14 00:19:42 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 00:19:42 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light'] was clicked" 2021-12-14 00:19:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time']", 'Base')" 2021-12-14 00:19:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time'] found." 2021-12-14 00:19:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time'] found." 2021-12-14 00:19:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time']", 'Base')" 2021-12-14 00:19:42 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time']" 2021-12-14 00:19:43 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time'] was clicked" 2021-12-14 00:19:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:43 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:43 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:43 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:43 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:19:43 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:43 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:19:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:44 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:44 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:44 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:44 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:44 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:19:44 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:19:44 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:19:44 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:44 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:19:44 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:19:45 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:19:45 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:45 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:45 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:45 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:45 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:19:45 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:45 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:19:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:45 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:45 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:45 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:19:45 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:19:45 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:45 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:45 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:45 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:45 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:45 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:19:45 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:19:45 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:19:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:19:50 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:50 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:50 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:50 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:50 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:19:50 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:19:50 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:19:50 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:50 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:50 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:19:50 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:50 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 00:19:50 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:50 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 00:19:50 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 00:19:50 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:50 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/.. found." 2021-12-14 00:19:50 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 00:19:50 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light'] was clicked" 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness']", 'Base')" 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness'] found." 2021-12-14 00:19:50 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:50 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness'] found." 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness']", 'Base')" 2021-12-14 00:19:50 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness']" 2021-12-14 00:19:50 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness'] was clicked" 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:51 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:51 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:19:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:19:51 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:19:51 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:51 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:19:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:19:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:19:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:19:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:19:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:19:52 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:52 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:19:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:19:52 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:19:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:19:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:19:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:19:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:19:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:52 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:19:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:53 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:53 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:19:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:19:53 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:19:53 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:19:53 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:53 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:19:53 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:53 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:19:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:19:53 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:19:53 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:19:53 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:19:53 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:20:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:20:00 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:00 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:00 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:00 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:00 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:00 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:00 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:20:00 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:20:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:00 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:00 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:00 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 00:20:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 00:20:00 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:00 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 00:20:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 00:20:00 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 00:20:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/.. found." 2021-12-14 00:20:00 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 00:20:00 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light'] was clicked" 2021-12-14 00:20:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming']", 'Base')" 2021-12-14 00:20:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming'] found." 2021-12-14 00:20:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming'] found." 2021-12-14 00:20:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming']", 'Base')" 2021-12-14 00:20:00 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming']" 2021-12-14 00:20:01 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming'] was clicked" 2021-12-14 00:20:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:01 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:01 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:20:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:20:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:20:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:02 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:20:02 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:02 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:20:02 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:20:02 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:20:02 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:20:02 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:20:02 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:02 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:20:02 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:20:02 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:20:02 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:20:02 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:20:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:20:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:20:03 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:03 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:20:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:20:03 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:20:03 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:03 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:20:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:20:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:20:03 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:03 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:20:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:20:03 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:20:03 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:20:03 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:20:03 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:03 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:20:03 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:20:03 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:20:03 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:20:03 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:20:03 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:20:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:20:09 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:09 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:09 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:09 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:09 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:09 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:09 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:20:09 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:20:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:09 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:09 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:09 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 00:20:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 00:20:09 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:09 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 00:20:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 00:20:09 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 00:20:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/.. found." 2021-12-14 00:20:09 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 00:20:09 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light'] was clicked" 2021-12-14 00:20:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth']", 'Base')" 2021-12-14 00:20:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth'] found." 2021-12-14 00:20:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth'] found." 2021-12-14 00:20:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth']", 'Base')" 2021-12-14 00:20:09 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth']" 2021-12-14 00:20:10 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth'] was clicked" 2021-12-14 00:20:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:10 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:10 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:10 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:10 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:20:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:10 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:20:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:20:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:11 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:20:11 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:11 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:20:11 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:20:11 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:20:11 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:20:11 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:20:11 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:11 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:20:11 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:20:11 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:20:11 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:20:11 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:20:11 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:20:11 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:11 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:20:11 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:11 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:20:11 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:20:11 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:20:11 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:11 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:20:11 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:20:11 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:11 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:20:11 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:12 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:20:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:20:12 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:20:12 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:20:12 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:20:12 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:12 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:20:12 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:20:12 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:20:12 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:20:12 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:20:12 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:20:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:20:17 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:17 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:17 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:17 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:17 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:17 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:17 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:20:17 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:20:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:20:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:20:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:20:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:20:17 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 00:20:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 00:20:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 00:20:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. found." 2021-12-14 00:20:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 00:20:17 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] was clicked" 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level']", 'Base')" 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level'] found." 2021-12-14 00:20:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level'] found." 2021-12-14 00:20:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level']", 'Base')" 2021-12-14 00:20:17 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level']" 2021-12-14 00:20:18 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level'] was clicked" 2021-12-14 00:20:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:18 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:18 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:18 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:18 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:20:18 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:18 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:20:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:20:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:20 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:20:20 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:20 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:20:20 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:20:20 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:20:20 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:20:20 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:20:20 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:20 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:20:20 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:20:20 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:20:20 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:20:20 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:20:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:20:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:20:20 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:20 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:20:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:20:20 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:20:20 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:20 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:20:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:20:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:20:20 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:20 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:20:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:20:20 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:20:21 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:20:21 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:20:21 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:21 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:20:21 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:20:21 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:20:21 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:20:21 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:20:21 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:20:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:20:26 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:26 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:26 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:26 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:26 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:26 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:26 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:20:26 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:20:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:26 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:26 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:26 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:20:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:20:26 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:26 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:20:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:20:26 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:20:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:20:26 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:20:26 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:20:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 00:20:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 00:20:26 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 00:20:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 00:20:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 00:20:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. found." 2021-12-14 00:20:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 00:20:27 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] was clicked" 2021-12-14 00:20:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point']", 'Base')" 2021-12-14 00:20:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point'] found." 2021-12-14 00:20:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point'] found." 2021-12-14 00:20:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point']", 'Base')" 2021-12-14 00:20:27 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point']" 2021-12-14 00:20:27 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point'] was clicked" 2021-12-14 00:20:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:27 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:27 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:27 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:27 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:20:27 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:20:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:20:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:30 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:20:30 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:30 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:20:30 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:20:30 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:20:30 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:20:30 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:20:30 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:30 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:20:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:20:30 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:20:30 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:20:30 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:20:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:20:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:20:30 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:30 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:20:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:20:30 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:20:30 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:30 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:20:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:20:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:20:31 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:31 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:20:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:20:31 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:20:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:20:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:20:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:20:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:20:31 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:20:31 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:20:31 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:20:31 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:20:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:20:37 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:37 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:37 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:37 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:37 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:37 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:37 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:20:38 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:20:38 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:38 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:20:38 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:20:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:20:38 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:20:38 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 00:20:38 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:38 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 00:20:38 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 00:20:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. found." 2021-12-14 00:20:38 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 00:20:38 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] was clicked" 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level']", 'Base')" 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level'] found." 2021-12-14 00:20:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level'] found." 2021-12-14 00:20:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level']", 'Base')" 2021-12-14 00:20:38 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level']" 2021-12-14 00:20:39 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level'] was clicked" 2021-12-14 00:20:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:39 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:39 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:39 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:39 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:20:39 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:39 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:20:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:20:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:42 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:20:42 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:42 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:20:42 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:20:42 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:20:43 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:20:43 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:20:43 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:43 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:20:43 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:20:43 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:20:43 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:20:43 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:20:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:20:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:20:43 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:43 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:20:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:20:43 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:20:43 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:44 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:20:44 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:20:44 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:44 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:20:44 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:44 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:20:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:20:44 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:20:44 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:20:44 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:20:44 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:44 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:20:44 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:20:44 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:20:44 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:20:44 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:20:44 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:20:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:20:49 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:49 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:49 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:49 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:49 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:49 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:49 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:20:49 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:20:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:20:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:20:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:20:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:20:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 00:20:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 00:20:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 00:20:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. found." 2021-12-14 00:20:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 00:20:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] was clicked" 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point']", 'Base')" 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point'] found." 2021-12-14 00:20:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:50 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point'] found." 2021-12-14 00:20:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point']", 'Base')" 2021-12-14 00:20:50 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point']" 2021-12-14 00:20:50 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point'] was clicked" 2021-12-14 00:20:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:50 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:50 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:50 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:50 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:20:50 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:50 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:20:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:20:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:20:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:20:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:20:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:20:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:20:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:20:52 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:52 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:20:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:20:52 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:20:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:20:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:20:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:20:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:20:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:20:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:20:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:20:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:52 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:20:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:20:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:20:52 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:52 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:20:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:20:52 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:20:52 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:20:52 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:20:52 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:20:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:20:52 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:20:52 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:20:53 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:20:53 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:20:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:20:58 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:58 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:58 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:58 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:58 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:20:58 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:20:58 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:20:58 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:20:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:20:58 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:58 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:20:58 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:20:58 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:58 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:20:58 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:20:58 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 00:20:58 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:58 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 00:20:58 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 00:20:58 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:58 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. found." 2021-12-14 00:20:58 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 00:20:58 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] was clicked" 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke']", 'Base')" 2021-12-14 00:20:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke'] found." 2021-12-14 00:20:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke'] found." 2021-12-14 00:20:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke']", 'Base')" 2021-12-14 00:20:59 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke']" 2021-12-14 00:20:59 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke'] was clicked" 2021-12-14 00:20:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:20:59 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:59 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:59 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:20:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:20:59 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:20:59 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:20:59 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:21:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:00 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:00 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:00 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:00 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:00 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:21:00 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:21:00 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:21:00 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:00 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:21:00 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:21:01 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:21:01 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:01 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:01 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:01 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:01 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:21:01 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:01 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:21:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:01 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:01 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:01 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:21:01 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:21:01 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:01 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:01 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:01 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:01 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:01 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:21:01 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:21:01 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:21:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:21:06 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:21:06 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:06 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:21:06 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:06 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:21:06 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:21:06 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:21:06 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:21:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:21:06 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:07 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:07 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:21:07 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:07 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:21:07 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:07 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:21:07 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:21:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:21:07 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:21:07 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 00:21:07 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:07 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 00:21:07 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 00:21:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. found." 2021-12-14 00:21:07 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 00:21:07 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] was clicked" 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point']", 'Base')" 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point'] found." 2021-12-14 00:21:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point'] found." 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point']", 'Base')" 2021-12-14 00:21:07 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point']" 2021-12-14 00:21:07 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point'] was clicked" 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:21:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:08 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:21:08 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:08 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:21:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:21:08 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:21:08 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:08 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:21:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:09 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:09 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:09 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:09 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:09 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:21:09 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:21:09 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:21:09 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:09 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:21:09 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:21:09 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:21:09 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:09 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:09 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:10 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:10 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:10 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:21:10 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:10 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:21:10 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:10 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:10 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:10 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:10 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:10 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:10 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:21:10 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:21:10 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:10 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:10 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:10 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:10 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:10 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:21:10 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:21:10 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:21:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:21:15 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:21:15 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:15 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:21:15 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:15 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:21:15 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:21:15 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:21:15 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:21:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:21:15 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:15 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:21:15 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:21:15 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:15 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:21:15 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:21:15 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']", 'Expandable')" 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] found." 2021-12-14 00:21:15 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:15 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] found." 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']", 'Expandable')" 2021-12-14 00:21:15 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']" 2021-12-14 00:21:15 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:15 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/.. found." 2021-12-14 00:21:15 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']" 2021-12-14 00:21:15 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] was clicked" 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level']", 'Base')" 2021-12-14 00:21:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level'] found." 2021-12-14 00:21:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level'] found." 2021-12-14 00:21:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level']", 'Base')" 2021-12-14 00:21:16 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level']" 2021-12-14 00:21:16 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level'] was clicked" 2021-12-14 00:21:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:21:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:16 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:21:16 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:16 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:21:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:21:16 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:21:16 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:16 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:21:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:18 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:18 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:18 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:18 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:18 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:21:18 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:21:18 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:21:18 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:18 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:21:18 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:21:18 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:21:18 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:18 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:18 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:18 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:18 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:18 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:18 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:18 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:18 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:21:18 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:18 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:21:18 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:18 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:18 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:18 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:19 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:19 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:21:19 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:21:19 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:19 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:19 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:19 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:19 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:19 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:21:19 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:21:19 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:21:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:21:24 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:21:24 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:24 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:21:24 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:24 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:21:24 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:21:24 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:21:24 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:24 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:24 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:21:24 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:24 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:21:24 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:24 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:21:24 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:21:24 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:24 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:21:24 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:21:24 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']", 'Expandable')" 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] found." 2021-12-14 00:21:24 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:24 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] found." 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']", 'Expandable')" 2021-12-14 00:21:24 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']" 2021-12-14 00:21:24 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:24 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/.. found." 2021-12-14 00:21:24 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']" 2021-12-14 00:21:24 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] was clicked" 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage']", 'Base')" 2021-12-14 00:21:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:25 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage'] found." 2021-12-14 00:21:25 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:25 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage'] found." 2021-12-14 00:21:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage']", 'Base')" 2021-12-14 00:21:25 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage']" 2021-12-14 00:21:25 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage'] was clicked" 2021-12-14 00:21:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:21:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:25 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:21:25 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:25 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:21:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:21:25 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:21:25 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:25 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:21:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:27 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:27 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:27 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:27 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:27 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:21:27 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:21:27 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:21:27 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:27 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:21:27 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:21:27 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:21:27 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:27 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:27 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:27 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:27 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:21:27 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:28 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:21:28 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:28 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:28 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:28 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:28 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:28 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:28 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:21:28 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:21:28 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:28 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:28 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:28 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:28 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:28 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:28 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:21:28 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:21:28 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:21:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:21:33 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:21:33 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:33 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:21:33 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:33 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:21:33 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:21:33 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:21:33 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:21:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:21:33 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:33 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:33 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:21:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:21:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:21:33 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:33 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:21:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:21:33 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:21:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:21:33 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:21:33 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:21:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']", 'Expandable')" 2021-12-14 00:21:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] found." 2021-12-14 00:21:34 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:34 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] found." 2021-12-14 00:21:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']", 'Expandable')" 2021-12-14 00:21:34 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']" 2021-12-14 00:21:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/.. found." 2021-12-14 00:21:34 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']" 2021-12-14 00:21:34 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] was clicked" 2021-12-14 00:21:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door']", 'Base')" 2021-12-14 00:21:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door'] found." 2021-12-14 00:21:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door'] found." 2021-12-14 00:21:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door']", 'Base')" 2021-12-14 00:21:34 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door']" 2021-12-14 00:21:34 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door'] was clicked" 2021-12-14 00:21:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:21:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:21:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:21:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:21:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:21:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:21:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:36 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:36 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:36 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:36 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:36 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:21:36 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:21:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:21:36 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:36 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:21:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:21:36 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:21:36 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:36 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:36 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:36 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:36 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:21:36 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:36 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:21:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:21:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:21:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:21:37 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:21:37 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:21:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:21:42 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:21:42 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:42 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:21:42 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:42 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:21:42 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:21:42 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:21:42 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:21:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:21:42 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:21:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:21:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:21:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:42 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:21:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:21:42 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:21:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:21:42 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:21:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:21:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']", 'Expandable')" 2021-12-14 00:21:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] found." 2021-12-14 00:21:43 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:43 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] found." 2021-12-14 00:21:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']", 'Expandable')" 2021-12-14 00:21:43 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']" 2021-12-14 00:21:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/.. found." 2021-12-14 00:21:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']" 2021-12-14 00:21:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] was clicked" 2021-12-14 00:21:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window']", 'Base')" 2021-12-14 00:21:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window'] found." 2021-12-14 00:21:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window'] found." 2021-12-14 00:21:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window']", 'Base')" 2021-12-14 00:21:43 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window']" 2021-12-14 00:21:43 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window'] was clicked" 2021-12-14 00:21:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:21:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:43 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:21:43 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:43 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:21:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:21:43 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:21:43 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:43 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:21:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:45 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:45 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:45 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:45 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:45 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:21:45 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:21:45 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:21:45 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:45 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:21:45 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:21:46 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:21:46 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:46 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:46 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:46 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:46 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:21:46 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:46 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:21:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:46 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:46 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:46 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:21:46 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:21:46 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:46 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:46 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:46 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:46 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:46 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:21:46 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:21:46 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:21:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:21:51 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:21:51 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:51 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:21:51 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:51 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:21:51 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:21:51 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:21:51 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:21:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:21:51 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:51 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:51 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:21:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:21:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:21:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:51 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:21:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:21:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:21:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:21:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:21:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:21:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:21:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:21:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment'] found." 2021-12-14 00:21:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment'] found." 2021-12-14 00:21:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:21:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']" 2021-12-14 00:21:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:21:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']" 2021-12-14 00:21:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:21:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours']", 'Base')" 2021-12-14 00:21:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours'] found." 2021-12-14 00:21:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours'] found." 2021-12-14 00:21:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours']", 'Base')" 2021-12-14 00:21:52 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours']" 2021-12-14 00:21:52 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours'] was clicked" 2021-12-14 00:21:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:21:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:52 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:21:52 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:52 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:21:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:21:52 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:21:52 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:21:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:55 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:55 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:55 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:21:55 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:21:55 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:21:55 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:21:55 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:21:55 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:55 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:21:55 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:21:55 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:21:55 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:55 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:21:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:55 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:55 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:21:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:21:55 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:21:55 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:55 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:21:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:55 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:55 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:21:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:21:55 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:21:56 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:21:56 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:56 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:21:56 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:56 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:21:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:21:56 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:21:56 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:21:56 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:21:56 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:22:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:22:02 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:22:02 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:02 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:22:02 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:02 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:22:02 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:22:02 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:22:02 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:22:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:22:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:22:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:22:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:22:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:22:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:22:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:22:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:22:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:22:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:22:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']", 'Expandable')" 2021-12-14 00:22:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] found." 2021-12-14 00:22:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] found." 2021-12-14 00:22:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']", 'Expandable')" 2021-12-14 00:22:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']" 2021-12-14 00:22:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/.. found." 2021-12-14 00:22:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']" 2021-12-14 00:22:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] was clicked" 2021-12-14 00:22:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute']", 'Base')" 2021-12-14 00:22:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute'] found." 2021-12-14 00:22:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute'] found." 2021-12-14 00:22:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute']", 'Base')" 2021-12-14 00:22:03 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute']" 2021-12-14 00:22:03 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute'] was clicked" 2021-12-14 00:22:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:22:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:22:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:22:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:22:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:22:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:22:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:22:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:22:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:22:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:22:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:22:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:22:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:22:06 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:06 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:22:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:22:06 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:22:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:22:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:22:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:22:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:22:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:22:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:22:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:22:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:22:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:22:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:22:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:22:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:22:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:22:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:22:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:22:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:22:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:22:06 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:22:06 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:22:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:22:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:22:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:22:13 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:22:13 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:13 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:22:13 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:13 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:22:13 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:22:13 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:22:13 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:22:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:22:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:22:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:22:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:22:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:22:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']", 'Expandable')" 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] found." 2021-12-14 00:22:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] found." 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']", 'Expandable')" 2021-12-14 00:22:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']" 2021-12-14 00:22:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/.. found." 2021-12-14 00:22:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']" 2021-12-14 00:22:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] was clicked" 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative']", 'Base')" 2021-12-14 00:22:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:14 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative'] found." 2021-12-14 00:22:14 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:14 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative'] found." 2021-12-14 00:22:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative']", 'Base')" 2021-12-14 00:22:14 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative']" 2021-12-14 00:22:14 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative'] was clicked" 2021-12-14 00:22:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:22:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:14 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:22:14 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:14 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:22:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:22:14 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:22:14 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:14 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:22:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:22:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:16 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:22:16 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:16 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:22:16 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:22:16 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:22:17 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:22:17 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:22:17 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:17 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:22:17 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:22:17 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:22:17 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:22:17 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:22:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:22:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:22:17 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:17 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:22:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:22:17 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:22:17 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:17 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:22:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:22:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:22:17 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:17 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:22:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:22:17 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:22:17 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:22:17 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:22:17 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:18 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:22:18 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:18 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:22:18 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:22:18 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:22:18 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:22:18 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:22:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:22:23 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:22:23 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:23 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:22:23 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:23 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:22:23 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:22:23 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:22:23 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:22:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:22:23 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:23 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:22:23 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:22:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:22:23 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:22:23 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 00:22:23 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:23 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 00:22:23 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 00:22:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. found." 2021-12-14 00:22:23 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 00:22:23 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] was clicked" 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection']", 'Base')" 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection'] found." 2021-12-14 00:22:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:24 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection'] found." 2021-12-14 00:22:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection']", 'Base')" 2021-12-14 00:22:24 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection']" 2021-12-14 00:22:24 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection'] was clicked" 2021-12-14 00:22:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:22:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:24 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:22:24 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:24 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:22:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:22:24 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:22:24 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:22:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:22:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:27 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:22:27 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:28 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:22:28 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:22:28 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:22:28 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:22:28 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:22:28 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:28 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:22:29 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:22:29 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:22:29 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:22:29 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:22:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:22:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:22:29 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:29 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:22:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:22:29 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:22:29 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:29 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:22:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:22:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:22:29 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:29 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:22:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:22:29 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:22:29 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:22:29 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:22:29 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:29 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:22:29 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:22:29 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:22:29 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:22:30 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:22:30 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:22:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:22:34 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:22:34 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:34 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:22:34 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:34 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:22:34 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:22:34 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:22:35 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:22:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:22:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:22:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:22:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:22:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:22:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 00:22:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 00:22:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 00:22:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. found." 2021-12-14 00:22:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 00:22:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] was clicked" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity']", 'Base')" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity'] found." 2021-12-14 00:22:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity'] found." 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity']", 'Base')" 2021-12-14 00:22:35 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity']" 2021-12-14 00:22:35 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity'] was clicked" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:22:36 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:36 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:22:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:22:36 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:22:36 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:36 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:22:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:22:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:38 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:22:38 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:38 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:22:38 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:22:38 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:22:38 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:22:38 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:22:38 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:38 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:22:38 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:22:38 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:22:38 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:22:38 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:22:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:22:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:22:38 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:38 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:22:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:22:38 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:22:38 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:38 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:22:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:22:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:22:38 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:38 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:22:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:22:38 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:22:38 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:22:38 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:22:38 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:38 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:22:38 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:22:39 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:22:39 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:22:39 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:22:39 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:22:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:22:44 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:22:44 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:44 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:22:44 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:44 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:22:44 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:22:44 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:22:44 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:22:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:22:44 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:44 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:44 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:22:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:22:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:44 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:22:44 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:44 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:22:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:22:44 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:22:44 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:44 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:22:44 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:22:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:22:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 00:22:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 00:22:45 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:45 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 00:22:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 00:22:45 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 00:22:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. found." 2021-12-14 00:22:45 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 00:22:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] was clicked" 2021-12-14 00:22:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection']", 'Base')" 2021-12-14 00:22:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection'] found." 2021-12-14 00:22:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection'] found." 2021-12-14 00:22:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection']", 'Base')" 2021-12-14 00:22:45 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection']" 2021-12-14 00:22:45 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection'] was clicked" 2021-12-14 00:22:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:22:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:45 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:22:45 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:45 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:22:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:22:45 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:22:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:46 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:22:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:22:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:48 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:22:48 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:48 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:22:48 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:22:48 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:22:48 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:22:48 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:22:48 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:48 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:22:48 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:22:48 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:22:48 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:22:48 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:22:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:22:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:22:48 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:48 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:22:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:22:48 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:22:48 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:48 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:22:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:22:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:22:48 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:48 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:22:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:22:48 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:22:49 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:22:49 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:22:49 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:49 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:22:49 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:22:49 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:22:49 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:22:49 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:22:49 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:22:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:22:54 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:22:54 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:54 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:22:54 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:54 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:22:54 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:22:54 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:22:54 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:22:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:22:54 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:54 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:54 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:22:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:22:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:22:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:22:54 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:54 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:22:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:22:54 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:22:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:22:54 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:22:54 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:22:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 00:22:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 00:22:54 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:54 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 00:22:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 00:22:54 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 00:22:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. found." 2021-12-14 00:22:54 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 00:22:55 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] was clicked" 2021-12-14 00:22:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity']", 'Base')" 2021-12-14 00:22:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity'] found." 2021-12-14 00:22:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity'] found." 2021-12-14 00:22:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity']", 'Base')" 2021-12-14 00:22:55 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity']" 2021-12-14 00:22:55 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity'] was clicked" 2021-12-14 00:22:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:22:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:22:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:22:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:22:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:22:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:22:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:22:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:57 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:22:57 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:57 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:22:57 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:22:57 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:22:57 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:22:57 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:22:57 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:57 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:22:57 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:22:58 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:22:58 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:22:58 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:22:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:22:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:22:58 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:58 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:22:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:22:58 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:22:58 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:58 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:22:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:22:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:22:58 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:58 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:22:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:22:58 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:22:58 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:22:58 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:22:58 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:22:58 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:22:58 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:22:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:22:58 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:22:58 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:22:58 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:22:58 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:23:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:23:03 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:23:03 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:03 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:23:03 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:03 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:23:03 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:23:03 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:23:03 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:23:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:23:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:23:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:23:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:23:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:23:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:23:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:23:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:23:04 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']", 'Expandable')" 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] found." 2021-12-14 00:23:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] found." 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']", 'Expandable')" 2021-12-14 00:23:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']" 2021-12-14 00:23:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/.. found." 2021-12-14 00:23:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']" 2021-12-14 00:23:04 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] was clicked" 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV']", 'Base')" 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV'] found." 2021-12-14 00:23:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV'] found." 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV']", 'Base')" 2021-12-14 00:23:04 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV']" 2021-12-14 00:23:04 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV'] was clicked" 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:23:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:23:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:23:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:23:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:23:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:23:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:23:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:23:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:23:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:23:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:23:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:23:06 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:06 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:23:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:23:06 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:23:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:23:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:23:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:23:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:23:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:23:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:23:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:23:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:23:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:23:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:23:07 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:07 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:23:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:23:07 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:23:07 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:23:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:23:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:23:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:23:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:23:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:23:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:23:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:23:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:23:12 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:23:12 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:12 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:23:12 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:12 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:23:12 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:23:12 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:23:12 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:23:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:23:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:23:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:23:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:23:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:23:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:23:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:23:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:23:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:23:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:23:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']", 'Expandable')" 2021-12-14 00:23:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] found." 2021-12-14 00:23:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] found." 2021-12-14 00:23:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']", 'Expandable')" 2021-12-14 00:23:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']" 2021-12-14 00:23:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/.. found." 2021-12-14 00:23:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']" 2021-12-14 00:23:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] was clicked" 2021-12-14 00:23:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity']", 'Base')" 2021-12-14 00:23:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity'] found." 2021-12-14 00:23:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity'] found." 2021-12-14 00:23:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity']", 'Base')" 2021-12-14 00:23:13 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity']" 2021-12-14 00:23:13 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity'] was clicked" 2021-12-14 00:23:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:23:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:23:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:23:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:23:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:23:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:23:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:23:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:16 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:23:16 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:16 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:23:16 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:23:16 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:23:16 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:23:16 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:23:16 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:16 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:23:16 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:23:16 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:23:16 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:23:16 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:23:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:23:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:23:16 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:16 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:23:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:23:16 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:23:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:23:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:23:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:23:16 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:16 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:23:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:23:16 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:23:16 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:23:16 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:23:16 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:16 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:23:16 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:23:16 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:23:16 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:23:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:23:17 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:23:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:23:22 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:23:22 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:22 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:23:22 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:22 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:23:22 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:23:22 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:23:22 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:23:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:23:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:22 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:23:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:23:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:23:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:23:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:23:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:23:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:23:23 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:23:23 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:23:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']", 'Expandable')" 2021-12-14 00:23:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound'] found." 2021-12-14 00:23:23 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:23 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound'] found." 2021-12-14 00:23:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']", 'Expandable')" 2021-12-14 00:23:23 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']" 2021-12-14 00:23:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/.. found." 2021-12-14 00:23:23 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']" 2021-12-14 00:23:23 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound'] was clicked" 2021-12-14 00:23:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity']", 'Base')" 2021-12-14 00:23:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity'] found." 2021-12-14 00:23:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity'] found." 2021-12-14 00:23:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity']", 'Base')" 2021-12-14 00:23:23 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity']" 2021-12-14 00:23:23 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity'] was clicked" 2021-12-14 00:23:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:23:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:23:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:23:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:23:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:23:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:23:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:23:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:23:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:23:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:23:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:23:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:23:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:23:26 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:26 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:23:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:23:26 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:23:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:23:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:23:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:23:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:23:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:23:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:23:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:23:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:23:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:23:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:23:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:23:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:23:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:23:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:23:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:23:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:23:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:23:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:23:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:23:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:23:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:23:32 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:23:32 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:23:32 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:32 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:23:32 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:32 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:23:32 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:23:32 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:23:32 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:23:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:23:32 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:32 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:32 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:23:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:23:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:23:32 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:32 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:23:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:23:32 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:23:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:23:33 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:23:33 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:23:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']", 'Expandable')" 2021-12-14 00:23:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] found." 2021-12-14 00:23:33 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:33 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] found." 2021-12-14 00:23:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']", 'Expandable')" 2021-12-14 00:23:33 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']" 2021-12-14 00:23:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/.. found." 2021-12-14 00:23:33 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']" 2021-12-14 00:23:33 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] was clicked" 2021-12-14 00:23:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted']", 'Base')" 2021-12-14 00:23:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted'] found." 2021-12-14 00:23:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted'] found." 2021-12-14 00:23:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted']", 'Base')" 2021-12-14 00:23:33 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted']" 2021-12-14 00:23:33 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted'] was clicked" 2021-12-14 00:23:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:23:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:23:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:23:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:23:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:23:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:33 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:23:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:23:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:36 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:23:36 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:36 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:23:36 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:23:36 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:23:36 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:23:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:23:36 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:36 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:23:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:23:36 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:23:36 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:23:36 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:23:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:23:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:23:36 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:36 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:23:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:23:36 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:23:36 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:36 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:23:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:23:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:23:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:23:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:23:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:23:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:23:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:23:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:23:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:23:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:23:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:23:37 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:23:37 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:23:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:23:42 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:23:42 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:42 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:23:42 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:42 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:23:42 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:23:42 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:23:42 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:23:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:23:42 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:23:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:23:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:23:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:42 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:23:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:23:42 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:23:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:23:42 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:23:42 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:23:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']", 'Expandable')" 2021-12-14 00:23:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] found." 2021-12-14 00:23:43 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:43 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] found." 2021-12-14 00:23:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']", 'Expandable')" 2021-12-14 00:23:43 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']" 2021-12-14 00:23:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/.. found." 2021-12-14 00:23:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']" 2021-12-14 00:23:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] was clicked" 2021-12-14 00:23:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status']", 'Base')" 2021-12-14 00:23:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status'] found." 2021-12-14 00:23:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status'] found." 2021-12-14 00:23:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status']", 'Base')" 2021-12-14 00:23:43 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status']" 2021-12-14 00:23:43 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status'] was clicked" 2021-12-14 00:23:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:23:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:43 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:23:43 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:43 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:23:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:23:43 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:23:43 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:43 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:23:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:23:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:23:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:23:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:23:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:23:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:23:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:23:46 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:46 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:23:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:23:46 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:23:46 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:23:46 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:23:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:23:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:23:46 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:46 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:23:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:23:46 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:23:46 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:46 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:23:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:23:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:23:47 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:23:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:23:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:23:47 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:23:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:23:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:23:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:23:47 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:23:47 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:23:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:23:47 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:23:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:23:52 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:23:52 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:52 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:23:52 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:52 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:23:52 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:23:52 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:23:52 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:23:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:23:52 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:52 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:52 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:23:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:23:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:23:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:23:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:23:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:23:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:23:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:23:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:23:53 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:23:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']", 'Expandable')" 2021-12-14 00:23:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:53 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] found." 2021-12-14 00:23:53 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:53 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] found." 2021-12-14 00:23:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']", 'Expandable')" 2021-12-14 00:23:53 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']" 2021-12-14 00:23:53 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:53 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/.. found." 2021-12-14 00:23:53 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']" 2021-12-14 00:23:53 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] was clicked" 2021-12-14 00:23:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection']", 'Base')" 2021-12-14 00:23:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:53 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection'] found." 2021-12-14 00:23:53 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:53 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection'] found." 2021-12-14 00:23:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection']", 'Base')" 2021-12-14 00:23:53 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection']" 2021-12-14 00:23:54 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection'] was clicked" 2021-12-14 00:23:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:23:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:23:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:23:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:23:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:23:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:23:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:23:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:57 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:23:57 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:57 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:23:57 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:23:57 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:23:57 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:23:57 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:23:57 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:57 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:23:57 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:23:58 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:23:58 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:23:58 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:23:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:23:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:23:58 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:58 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:23:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:23:58 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:23:58 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:58 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:23:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:23:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:23:58 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:58 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:23:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:23:58 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:23:58 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:23:58 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:23:58 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:23:58 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:23:58 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:23:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:23:58 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:23:58 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:23:59 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:23:59 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:24:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:24:04 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:24:04 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:04 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:24:04 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:04 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:24:04 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:24:04 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:24:04 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:24:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:24:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:24:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:24:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:24:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:24:04 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 00:24:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 00:24:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 00:24:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. found." 2021-12-14 00:24:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 00:24:04 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] was clicked" 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure']", 'Base')" 2021-12-14 00:24:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:05 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure'] found." 2021-12-14 00:24:05 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure'] found." 2021-12-14 00:24:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure']", 'Base')" 2021-12-14 00:24:05 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure']" 2021-12-14 00:24:05 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure'] was clicked" 2021-12-14 00:24:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:24:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:05 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:24:05 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:05 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:24:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:24:05 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:24:05 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:05 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:24:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:24:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:24:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:24:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:24:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:24:09 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:24:09 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:24:09 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:09 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:24:09 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:24:09 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:24:09 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:24:09 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:24:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:24:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:24:09 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:24:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:24:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:24:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:24:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:24:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:24:09 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:09 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:24:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:24:09 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:24:10 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:24:10 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:24:10 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:10 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:24:10 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:24:10 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:24:10 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:24:10 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:24:10 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:24:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:24:15 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:24:15 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:15 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:24:15 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:15 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:24:15 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:24:15 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:24:15 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:24:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:24:15 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:15 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:16 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:24:16 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:16 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:24:16 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:16 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:24:16 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:24:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:24:16 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:24:16 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 00:24:16 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:16 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 00:24:16 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 00:24:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. found." 2021-12-14 00:24:16 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 00:24:16 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] was clicked" 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure']", 'Base')" 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure'] found." 2021-12-14 00:24:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure'] found." 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure']", 'Base')" 2021-12-14 00:24:16 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure']" 2021-12-14 00:24:16 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure'] was clicked" 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:24:16 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:16 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:24:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:24:16 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:24:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:24:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:24:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:19 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:24:19 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:19 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:24:19 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:24:19 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:24:19 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:24:19 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:24:19 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:19 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:24:19 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:24:19 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:24:19 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:24:19 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:24:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:24:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:24:19 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:19 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:24:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:24:19 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:24:19 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:19 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:24:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:24:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:24:19 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:19 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:24:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:24:19 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:24:19 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:24:19 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:24:19 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:19 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:24:19 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:24:19 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:24:19 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:24:20 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:24:20 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:24:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:24:25 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:24:25 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:25 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:24:25 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:25 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:24:25 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:24:25 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:24:25 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:24:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:24:25 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:25 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:25 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:24:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:24:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:25 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:24:25 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:25 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:24:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:24:25 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:24:25 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:24:26 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:24:26 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:24:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 00:24:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 00:24:26 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:26 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 00:24:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 00:24:26 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 00:24:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. found." 2021-12-14 00:24:26 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 00:24:26 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] was clicked" 2021-12-14 00:24:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure']", 'Base')" 2021-12-14 00:24:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure'] found." 2021-12-14 00:24:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure'] found." 2021-12-14 00:24:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure']", 'Base')" 2021-12-14 00:24:26 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure']" 2021-12-14 00:24:26 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure'] was clicked" 2021-12-14 00:24:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:24:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:26 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:24:26 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:26 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:24:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:24:26 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:24:26 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:26 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:24:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:24:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:29 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:24:29 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:29 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:24:29 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:24:29 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:24:29 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:24:29 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:24:29 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:29 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:24:29 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:24:29 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:24:29 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:24:29 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:24:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:24:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:24:29 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:29 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:24:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:24:29 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:24:29 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:29 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:24:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:24:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:24:29 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:29 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:24:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:24:29 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:24:29 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:24:29 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:24:29 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:29 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:24:29 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:24:29 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:24:29 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:24:30 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:24:30 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:24:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:24:35 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:24:35 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:35 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:24:35 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:35 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:24:35 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:24:35 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:24:35 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:24:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:24:35 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:35 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:35 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:24:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:24:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:24:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:24:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:24:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:24:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:24:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:24:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:24:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 00:24:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 00:24:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 00:24:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 00:24:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 00:24:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. found." 2021-12-14 00:24:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 00:24:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] was clicked" 2021-12-14 00:24:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure']", 'Base')" 2021-12-14 00:24:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure'] found." 2021-12-14 00:24:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure'] found." 2021-12-14 00:24:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure']", 'Base')" 2021-12-14 00:24:36 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure']" 2021-12-14 00:24:36 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure'] was clicked" 2021-12-14 00:24:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:24:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:36 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:24:36 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:36 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:24:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:24:36 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:24:36 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:36 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:24:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:24:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:38 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:24:38 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:38 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:24:38 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:24:38 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:24:39 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:24:39 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:24:39 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:39 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:24:39 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:24:39 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:24:39 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:24:39 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:24:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:24:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:24:39 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:39 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:24:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:24:39 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:24:39 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:39 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:24:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:24:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:24:39 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:39 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:24:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:24:39 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:24:39 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:24:39 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:24:39 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:39 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:24:39 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:24:39 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:24:39 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:24:39 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:24:39 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:24:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:24:45 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:24:45 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:45 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:24:45 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:46 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:24:46 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:24:46 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:24:46 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:24:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:24:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:24:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:24:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:24:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:24:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 00:24:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 00:24:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 00:24:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. found." 2021-12-14 00:24:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 00:24:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] was clicked" 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure']", 'Base')" 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure'] found." 2021-12-14 00:24:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure'] found." 2021-12-14 00:24:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure']", 'Base')" 2021-12-14 00:24:46 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure']" 2021-12-14 00:24:47 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure'] was clicked" 2021-12-14 00:24:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:24:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:47 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:24:47 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:47 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:24:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:24:47 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:24:47 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:47 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:24:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:24:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:49 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:24:49 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:49 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:24:49 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:24:49 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:24:49 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:24:49 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:24:49 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:49 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:24:49 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:24:49 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:24:49 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:24:49 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:24:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:24:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:24:49 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:49 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:24:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:24:49 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:24:49 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:49 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:24:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:24:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:24:50 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:50 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:24:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:24:50 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:24:50 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:24:50 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:24:50 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:50 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:24:50 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:24:50 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:24:50 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:24:50 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:24:50 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:24:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:24:55 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:24:55 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:55 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:24:55 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:55 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:24:55 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:24:55 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:24:55 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:24:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:24:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:56 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:24:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:24:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:24:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:24:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:24:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:24:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:24:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:24:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:24:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:24:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']", 'Expandable')" 2021-12-14 00:24:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] found." 2021-12-14 00:24:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] found." 2021-12-14 00:24:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']", 'Expandable')" 2021-12-14 00:24:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']" 2021-12-14 00:24:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/.. found." 2021-12-14 00:24:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']" 2021-12-14 00:24:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] was clicked" 2021-12-14 00:24:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind']", 'Base')" 2021-12-14 00:24:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind'] found." 2021-12-14 00:24:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind'] found." 2021-12-14 00:24:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind']", 'Base')" 2021-12-14 00:24:56 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind']" 2021-12-14 00:24:57 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind'] was clicked" 2021-12-14 00:24:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:24:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:57 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:24:57 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:57 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:24:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:24:57 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:24:57 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:57 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:24:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:24:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:58 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:24:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:58 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:24:58 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:24:58 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:24:58 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:24:58 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:24:58 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:59 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:24:59 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:24:59 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:24:59 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:24:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:24:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:24:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:24:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:24:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:24:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:24:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:24:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:24:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:24:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:24:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:24:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:24:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:24:59 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:24:59 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:24:59 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:24:59 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:24:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:24:59 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:24:59 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:24:59 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:24:59 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:25:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:25:05 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:25:05 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:05 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:25:05 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:05 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:25:05 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:25:05 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:25:06 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:25:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:25:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 00:25:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:25:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 00:25:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 00:25:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']", 'Expandable')" 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] found." 2021-12-14 00:25:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] found." 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']", 'Expandable')" 2021-12-14 00:25:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']" 2021-12-14 00:25:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/.. found." 2021-12-14 00:25:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']" 2021-12-14 00:25:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] was clicked" 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain']", 'Base')" 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain'] found." 2021-12-14 00:25:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain'] found." 2021-12-14 00:25:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain']", 'Base')" 2021-12-14 00:25:06 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain']" 2021-12-14 00:25:07 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain'] was clicked" 2021-12-14 00:25:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:25:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:25:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:07 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:25:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:25:07 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:25:07 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:25:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:25:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:25:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:25:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:25:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:25:09 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:25:09 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:25:09 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:09 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:25:09 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:25:09 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:25:09 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:25:09 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:25:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:25:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:25:09 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:25:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:25:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:25:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:25:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:25:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:25:09 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:09 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:25:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:25:09 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:25:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:25:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:25:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:25:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:25:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:25:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:25:10 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:25:10 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:25:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:25:16 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:25:16 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:16 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:25:16 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:16 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:25:16 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:25:16 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:25:16 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:25:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:25:16 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:16 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:16 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:16 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:16 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:25:16 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:16 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:25:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:25:16 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:25:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:25:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:25:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:25:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:25:17 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:25:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 00:25:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 00:25:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 00:25:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 00:25:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 00:25:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. found." 2021-12-14 00:25:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 00:25:17 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] was clicked" 2021-12-14 00:25:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity']", 'Base')" 2021-12-14 00:25:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity'] found." 2021-12-14 00:25:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity'] found." 2021-12-14 00:25:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity']", 'Base')" 2021-12-14 00:25:17 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity']" 2021-12-14 00:25:17 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity'] was clicked" 2021-12-14 00:25:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:25:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:17 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:25:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:25:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:25:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:25:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:25:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:25:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:20 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:25:20 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:20 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:25:20 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:25:20 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:25:20 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:25:20 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:25:20 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:20 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:25:20 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:25:20 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:25:20 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:25:20 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:25:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:25:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:25:20 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:20 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:25:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:25:20 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:25:20 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:20 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:25:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:25:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:25:20 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:20 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:25:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:25:20 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:25:21 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:25:21 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:25:21 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:21 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:25:21 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:25:21 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:25:21 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:25:21 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:25:21 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:25:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:25:27 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:25:27 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:27 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:25:27 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:27 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:25:27 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:25:27 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:25:27 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:25:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:25:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:25:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:25:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:25:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:25:27 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 00:25:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 00:25:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 00:25:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. found." 2021-12-14 00:25:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 00:25:27 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] was clicked" 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas']", 'Base')" 2021-12-14 00:25:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas'] found." 2021-12-14 00:25:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas'] found." 2021-12-14 00:25:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas']", 'Base')" 2021-12-14 00:25:28 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas']" 2021-12-14 00:25:28 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas'] was clicked" 2021-12-14 00:25:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:25:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:25:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:25:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:25:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:25:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:25:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:25:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:30 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:25:30 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:30 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:25:30 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:25:30 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:25:30 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:25:30 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:25:30 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:30 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:25:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:25:30 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:25:30 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:25:30 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:25:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:25:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:25:30 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:30 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:25:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:25:30 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:25:30 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:30 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:25:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:25:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:25:31 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:31 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:25:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:25:31 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:25:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:25:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:25:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:25:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:25:31 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:25:31 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:25:31 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:25:31 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:25:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:25:37 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:25:37 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:37 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:25:37 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:37 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:25:37 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:25:37 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:25:37 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:25:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:25:37 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:37 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:37 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:25:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:25:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:25:37 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:37 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:25:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:25:37 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:25:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:25:38 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:25:38 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:25:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 00:25:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 00:25:38 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:38 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 00:25:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 00:25:38 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 00:25:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. found." 2021-12-14 00:25:38 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 00:25:38 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] was clicked" 2021-12-14 00:25:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water']", 'Base')" 2021-12-14 00:25:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water'] found." 2021-12-14 00:25:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water'] found." 2021-12-14 00:25:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water']", 'Base')" 2021-12-14 00:25:38 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water']" 2021-12-14 00:25:38 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water'] was clicked" 2021-12-14 00:25:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:25:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:38 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:25:38 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:38 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:25:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:25:38 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:25:38 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:25:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:25:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:41 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:25:41 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:41 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:25:41 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:25:41 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:25:41 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:25:41 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:25:41 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:41 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:25:41 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:25:41 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:25:41 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:25:41 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:25:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:25:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:25:41 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:41 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:25:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:25:41 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:25:41 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:41 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:25:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:25:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:25:42 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:42 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:25:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:25:42 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:25:42 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:25:42 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:25:42 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:42 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:25:42 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:25:42 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:25:42 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:25:42 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:25:42 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:25:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:25:48 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:25:48 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:48 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:25:48 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:48 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:25:48 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:25:48 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:25:48 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:25:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:25:48 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:48 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:48 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:25:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:25:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:25:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:48 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:25:48 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:48 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:25:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:25:48 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:25:48 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:25:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:25:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:25:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 00:25:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 00:25:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 00:25:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 00:25:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 00:25:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. found." 2021-12-14 00:25:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 00:25:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] was clicked" 2021-12-14 00:25:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam']", 'Base')" 2021-12-14 00:25:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam'] found." 2021-12-14 00:25:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam'] found." 2021-12-14 00:25:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam']", 'Base')" 2021-12-14 00:25:49 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam']" 2021-12-14 00:25:49 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam'] was clicked" 2021-12-14 00:25:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:25:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:49 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:25:49 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:25:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:25:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:25:50 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:50 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:25:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:25:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:25:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:25:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:25:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:25:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:25:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:25:52 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:52 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:25:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:25:53 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:25:53 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:25:53 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:25:53 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:25:53 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:25:53 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:53 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:25:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:25:53 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:25:53 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:53 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:25:53 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:25:53 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:25:53 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:53 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:25:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:25:53 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:25:53 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:25:53 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:25:53 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:25:53 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:25:53 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:25:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:25:53 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:25:53 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:25:53 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:25:53 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:26:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:26:00 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:26:00 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:00 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:26:00 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:00 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:26:00 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:26:00 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:26:01 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:26:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:26:01 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:01 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:26:01 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:26:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:26:01 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:26:01 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']", 'Expandable')" 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] found." 2021-12-14 00:26:01 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:01 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] found." 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']", 'Expandable')" 2021-12-14 00:26:01 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']" 2021-12-14 00:26:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/.. found." 2021-12-14 00:26:01 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']" 2021-12-14 00:26:01 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] was clicked" 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days']", 'Base')" 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days'] found." 2021-12-14 00:26:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days'] found." 2021-12-14 00:26:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days']", 'Base')" 2021-12-14 00:26:01 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days']" 2021-12-14 00:26:02 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days'] was clicked" 2021-12-14 00:26:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:26:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:26:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:26:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:26:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:26:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:26:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:26:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:04 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:26:04 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:04 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:26:04 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:26:04 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:26:04 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:26:04 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:26:04 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:04 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:26:04 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:26:04 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:26:04 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:26:05 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:26:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:26:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:26:05 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:05 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:26:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:26:05 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:26:05 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:05 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:26:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:26:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:26:05 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:05 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:26:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:26:05 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:26:05 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:26:05 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:26:05 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:05 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:26:05 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:26:05 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:26:05 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:26:05 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:26:05 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:26:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:26:11 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:26:11 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:11 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:26:11 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:11 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:26:11 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:26:11 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:26:11 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:26:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:26:11 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:11 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:11 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:26:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:26:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:26:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:26:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:26:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:26:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:26:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:26:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:26:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']", 'Expandable')" 2021-12-14 00:26:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] found." 2021-12-14 00:26:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] found." 2021-12-14 00:26:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']", 'Expandable')" 2021-12-14 00:26:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']" 2021-12-14 00:26:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/.. found." 2021-12-14 00:26:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']" 2021-12-14 00:26:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] was clicked" 2021-12-14 00:26:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days']", 'Base')" 2021-12-14 00:26:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days'] found." 2021-12-14 00:26:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days'] found." 2021-12-14 00:26:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days']", 'Base')" 2021-12-14 00:26:12 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days']" 2021-12-14 00:26:12 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days'] was clicked" 2021-12-14 00:26:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:26:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:26:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:26:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:26:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:26:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:26:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:26:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:26:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:26:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:26:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:26:15 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:26:15 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:26:15 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:15 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:26:15 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:26:15 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:26:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:26:15 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:26:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:26:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:26:15 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:15 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:26:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:26:15 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:26:15 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:15 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:26:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:26:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:26:15 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:15 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:26:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:26:15 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:26:15 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:26:15 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:26:15 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:15 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:26:15 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:26:15 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:26:15 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:26:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:26:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:26:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:26:21 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:26:21 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:21 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:26:21 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:21 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:26:21 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:26:21 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:26:21 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:21 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:26:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:21 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:26:21 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:21 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:26:21 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:26:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:26:21 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:26:21 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']", 'Expandable')" 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] found." 2021-12-14 00:26:21 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:21 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] found." 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']", 'Expandable')" 2021-12-14 00:26:21 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']" 2021-12-14 00:26:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/.. found." 2021-12-14 00:26:21 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']" 2021-12-14 00:26:21 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] was clicked" 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days']", 'Base')" 2021-12-14 00:26:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days'] found." 2021-12-14 00:26:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days'] found." 2021-12-14 00:26:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days']", 'Base')" 2021-12-14 00:26:22 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days']" 2021-12-14 00:26:22 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days'] was clicked" 2021-12-14 00:26:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:26:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:22 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:26:22 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:22 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:26:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:26:22 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:26:22 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:22 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:26:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:26:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:24 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:26:24 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:24 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:26:24 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:26:24 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:26:24 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:26:24 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:26:24 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:24 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:26:24 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:26:24 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:26:24 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:26:24 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:26:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:26:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:26:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:26:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:26:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:26:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:26:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:26:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:26:25 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:25 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:26:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:26:25 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:26:25 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:26:25 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:26:25 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:25 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:26:25 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:26:25 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:26:25 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:26:25 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:26:25 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:26:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:26:31 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:26:31 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:31 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:26:31 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:31 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:26:31 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:26:31 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:26:31 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:26:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:26:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:26:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:26:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:26:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:32 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:26:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:26:32 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:26:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:26:32 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:26:32 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:26:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:26:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:26:32 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:32 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:26:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:26:32 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:26:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 00:26:32 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:26:32 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 00:26:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy']", 'Base')" 2021-12-14 00:26:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy'] found." 2021-12-14 00:26:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy'] found." 2021-12-14 00:26:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy']", 'Base')" 2021-12-14 00:26:32 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy']" 2021-12-14 00:26:32 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy'] was clicked" 2021-12-14 00:26:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:26:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:26:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:26:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:26:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:26:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:26:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:26:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:35 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:26:35 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:35 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:26:35 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:26:35 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:26:35 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:26:35 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:26:35 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:35 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:26:35 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:26:35 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:26:35 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:26:35 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:26:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:26:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:26:35 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:35 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:26:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:26:35 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:26:35 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:35 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:26:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:26:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:26:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:26:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:26:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:26:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:26:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:26:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:26:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:26:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:26:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:26:36 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:26:36 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:26:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:26:42 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:26:42 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:42 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:26:42 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:42 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:26:42 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:26:42 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:26:42 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:26:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:26:42 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:26:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:26:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:26:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:42 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:26:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:26:42 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:26:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:26:42 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:26:42 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:26:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:26:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:26:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:42 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:26:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:26:42 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:26:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 00:26:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:26:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 00:26:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating']", 'Base')" 2021-12-14 00:26:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating'] found." 2021-12-14 00:26:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating'] found." 2021-12-14 00:26:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating']", 'Base')" 2021-12-14 00:26:43 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating']" 2021-12-14 00:26:43 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating'] was clicked" 2021-12-14 00:26:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:26:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:43 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:26:43 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:43 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:26:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:26:43 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:26:43 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:43 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:26:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:26:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:26:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:26:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:26:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:26:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:26:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:26:46 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:46 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:26:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:26:47 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:26:47 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:26:47 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:26:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:26:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:26:47 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:47 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:26:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:26:47 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:26:47 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:47 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:26:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:26:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:26:47 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:26:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:26:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:26:47 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:26:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:26:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:26:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:26:47 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:26:47 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:26:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:26:47 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:26:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:26:53 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:26:53 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:53 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:26:53 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:53 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:26:53 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:26:53 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:26:53 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:26:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:26:53 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:53 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:53 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:26:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:26:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:26:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:53 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:26:53 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:53 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:26:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:26:53 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:26:53 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:53 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:26:53 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:26:54 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:26:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:26:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:26:54 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:54 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:26:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:26:54 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:26:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 00:26:54 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:26:54 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 00:26:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal']", 'Base')" 2021-12-14 00:26:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal'] found." 2021-12-14 00:26:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal'] found." 2021-12-14 00:26:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal']", 'Base')" 2021-12-14 00:26:54 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal']" 2021-12-14 00:26:54 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal'] was clicked" 2021-12-14 00:26:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:26:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:26:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:26:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:26:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:26:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:26:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:26:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:56 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:26:56 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:56 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:26:56 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:26:56 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:26:56 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:26:56 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:26:56 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:57 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:26:57 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:26:57 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:26:57 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:26:57 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:26:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:26:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:26:57 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:57 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:26:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:26:57 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:26:57 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:57 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:26:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:26:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:26:57 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:57 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:26:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:26:57 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:26:57 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:26:57 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:26:57 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:26:57 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:26:57 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:26:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:26:57 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:26:57 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:26:57 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:26:57 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:27:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:27:03 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:27:03 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:03 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:27:03 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:03 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:27:03 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:27:03 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:27:03 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:27:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:27:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:27:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:27:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:27:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:27:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:27:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:27:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:27:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 00:27:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:27:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic']", 'Base')" 2021-12-14 00:27:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic'] found." 2021-12-14 00:27:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic'] found." 2021-12-14 00:27:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic']", 'Base')" 2021-12-14 00:27:04 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic']" 2021-12-14 00:27:04 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic'] was clicked" 2021-12-14 00:27:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:27:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:27:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:27:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:27:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:27:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:27:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:27:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:27:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:27:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:27:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:27:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:27:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:27:06 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:06 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:27:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:27:06 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:27:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:27:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:27:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:27:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:27:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:27:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:27:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:27:07 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:07 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:27:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:27:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:27:07 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:07 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:27:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:27:07 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:27:07 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:27:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:27:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:27:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:27:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:27:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:27:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:27:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:27:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:27:13 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:27:13 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:13 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:27:13 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:13 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:27:13 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:27:13 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:27:13 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:27:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:27:13 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:13 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:13 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:27:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:27:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:27:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:27:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:27:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:27:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:27:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:27:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:27:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:27:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:14 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:27:14 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:14 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:27:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:27:14 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:27:14 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:14 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 00:27:14 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:27:14 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 00:27:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil']", 'Base')" 2021-12-14 00:27:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:14 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil'] found." 2021-12-14 00:27:14 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:14 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil'] found." 2021-12-14 00:27:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil']", 'Base')" 2021-12-14 00:27:14 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil']" 2021-12-14 00:27:14 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil'] was clicked" 2021-12-14 00:27:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:27:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:14 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:27:14 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:14 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:27:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:27:14 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:27:14 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:14 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:27:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:27:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:16 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:27:16 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:16 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:27:16 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:27:16 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:27:16 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:27:16 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:27:16 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:16 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:27:16 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:27:16 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:27:16 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:27:16 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:27:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:27:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:27:16 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:16 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:27:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:27:16 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:27:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:27:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:27:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:27:17 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:17 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:27:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:27:17 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:27:17 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:27:17 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:27:17 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:17 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:27:17 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:27:17 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:27:17 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:27:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:27:17 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:27:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:27:22 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:27:22 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:22 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:27:22 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:23 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:27:23 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:27:23 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:27:23 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:27:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:27:23 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:23 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:27:23 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:27:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:27:23 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:27:23 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:27:23 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:23 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:27:23 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:27:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 00:27:23 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:27:23 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal']", 'Base')" 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal'] found." 2021-12-14 00:27:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:24 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal'] found." 2021-12-14 00:27:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal']", 'Base')" 2021-12-14 00:27:24 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal']" 2021-12-14 00:27:24 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal'] was clicked" 2021-12-14 00:27:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:27:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:24 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:27:24 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:24 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:27:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:27:24 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:27:24 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:27:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:27:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:27:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:27:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:27:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:27:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:27:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:27:26 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:26 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:27:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:27:26 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:27:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:27:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:27:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:27:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:27:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:27:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:27:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:27:27 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:27 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:27:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:27:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:27:27 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:27 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:27:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:27:27 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:27:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:27:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:27:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:27:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:27:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:27:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:27:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:27:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:27:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:27:33 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:27:33 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:33 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:27:33 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:33 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:27:33 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:27:33 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:27:33 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:27:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:27:33 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:33 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 00:27:33 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:27:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 00:27:33 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 00:27:33 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:27:33 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:33 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 00:27:33 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:27:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 00:27:33 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 00:27:33 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill']", 'Base')" 2021-12-14 00:27:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill'] found." 2021-12-14 00:27:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill'] found." 2021-12-14 00:27:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill']", 'Base')" 2021-12-14 00:27:34 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill']" 2021-12-14 00:27:34 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill'] was clicked" 2021-12-14 00:27:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:27:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:27:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:27:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:27:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:27:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:27:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:27:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:36 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:27:36 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:36 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:27:36 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:27:36 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:27:36 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:27:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:27:36 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:36 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:27:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:27:37 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:27:37 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:27:37 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:27:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:27:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:27:37 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:37 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:27:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:27:37 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:27:37 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:37 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:27:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:27:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:27:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:27:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:27:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:27:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:27:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:27:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:27:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:27:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:27:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:27:37 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:27:37 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:27:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:27:44 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:27:44 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:44 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:27:44 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:44 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:27:44 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:27:44 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:27:45 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:27:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:27:45 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:45 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:27:45 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:27:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:27:45 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:27:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency']", 'Base')" 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency'] found." 2021-12-14 00:27:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency'] found." 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency']", 'Base')" 2021-12-14 00:27:45 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency']" 2021-12-14 00:27:45 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency'] was clicked" 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:27:45 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:45 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:27:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:27:45 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:27:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:27:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:27:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:47 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:27:47 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:47 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:27:47 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:27:47 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:27:47 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:27:47 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:27:47 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:47 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:27:47 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:27:47 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:27:47 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:27:47 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:27:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:27:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:27:47 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:47 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:27:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:27:47 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:27:47 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:47 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:27:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:27:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:27:47 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:27:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:27:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:27:48 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:27:48 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:27:48 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:48 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:27:48 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:27:48 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:27:48 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:27:48 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:27:48 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:27:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:27:54 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:27:54 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:54 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:27:54 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:54 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:27:54 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:27:54 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:27:54 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:27:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:27:54 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:54 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:27:54 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:27:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:27:54 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:27:54 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:27:54 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:54 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:27:54 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:27:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:27:54 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:27:54 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence']", 'Base')" 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence'] found." 2021-12-14 00:27:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence'] found." 2021-12-14 00:27:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence']", 'Base')" 2021-12-14 00:27:54 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence']" 2021-12-14 00:27:55 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence'] was clicked" 2021-12-14 00:27:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:27:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:27:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:27:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:27:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:27:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:27:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:27:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:57 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:27:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:58 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:27:58 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:27:58 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:27:58 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:27:58 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:27:58 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:58 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:27:58 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:27:58 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:27:58 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:27:58 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:27:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:27:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:27:58 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:58 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:27:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:27:58 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:27:58 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:58 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:27:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:27:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:27:58 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:58 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:27:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:27:58 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:27:58 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:27:58 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:27:58 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:27:58 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:27:58 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:27:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:27:58 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:27:58 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:27:59 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:27:59 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:28:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:28:04 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:28:04 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:04 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:28:04 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:04 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:28:04 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:28:04 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:28:04 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:28:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:28:04 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:04 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:04 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:28:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:28:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:28:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:28:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:28:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:28:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:28:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:28:05 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:28:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:28:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:05 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:28:05 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:05 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:28:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:28:05 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:28:05 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:28:05 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:28:05 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:28:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address']", 'Base')" 2021-12-14 00:28:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:05 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address'] found." 2021-12-14 00:28:05 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address'] found." 2021-12-14 00:28:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address']", 'Base')" 2021-12-14 00:28:05 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address']" 2021-12-14 00:28:05 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address'] was clicked" 2021-12-14 00:28:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:28:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:05 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:28:05 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:05 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:28:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:28:05 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:28:05 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:05 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:28:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:28:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:28:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:28:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:28:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:28:08 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:28:08 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:28:08 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:08 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:28:08 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:28:08 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:28:08 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:28:08 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:28:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:28:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:28:08 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:08 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:28:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:28:08 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:28:08 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:08 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:28:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:28:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:28:08 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:08 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:28:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:28:08 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:28:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:28:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:28:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:28:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:28:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:28:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:28:09 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:28:09 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:28:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:28:16 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:28:16 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:16 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:28:16 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:16 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:28:16 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:28:16 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:28:16 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:28:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:28:16 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:16 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:16 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:28:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:28:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:28:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:28:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:28:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:28:17 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:28:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:28:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:28:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:28:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:28:17 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6']", 'Base')" 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6'] found." 2021-12-14 00:28:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6'] found." 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6']", 'Base')" 2021-12-14 00:28:17 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6']" 2021-12-14 00:28:17 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6'] was clicked" 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:17 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:28:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:18 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:28:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:28:18 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:28:18 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:18 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:28:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:28:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:21 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:28:21 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:21 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:28:21 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:28:21 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:28:21 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:28:21 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:28:21 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:21 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:28:21 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:28:21 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:28:21 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:28:21 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:28:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:28:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:28:21 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:21 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:28:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:28:21 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:28:21 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:21 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:28:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:28:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:28:21 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:21 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:28:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:28:21 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:28:21 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:28:21 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:28:21 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:22 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:28:22 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:28:22 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:28:22 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:28:22 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:28:22 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:28:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:28:29 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:28:29 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:29 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:28:29 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:29 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:28:29 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:28:29 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:28:29 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:28:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:28:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:28:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:28:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:28:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:28:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:28:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:28:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:28:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:28:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:28:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection']", 'Base')" 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection'] found." 2021-12-14 00:28:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection'] found." 2021-12-14 00:28:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection']", 'Base')" 2021-12-14 00:28:30 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection']" 2021-12-14 00:28:30 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection'] was clicked" 2021-12-14 00:28:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:28:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:28:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:28:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:28:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:28:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:28:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:28:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:28:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:35 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:28:35 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:28:35 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:28:35 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:28:35 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:28:35 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:35 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:28:35 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:28:35 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:28:35 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:28:35 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:28:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:28:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:28:35 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:35 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:28:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:28:35 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:28:35 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:35 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:28:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:28:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:28:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:28:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:28:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:28:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:28:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:28:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:28:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:28:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:28:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:28:36 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:28:36 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:28:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:28:41 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:28:41 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:42 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:28:42 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:42 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:28:42 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:28:42 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:28:42 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:28:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:28:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:42 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:28:42 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:28:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:28:42 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:28:42 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:28:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:42 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:28:42 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:28:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:28:42 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:28:42 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer']", 'Base')" 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer'] found." 2021-12-14 00:28:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer'] found." 2021-12-14 00:28:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer']", 'Base')" 2021-12-14 00:28:42 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer']" 2021-12-14 00:28:43 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer'] was clicked" 2021-12-14 00:28:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:28:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:43 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:28:43 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:43 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:28:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:28:43 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:28:43 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:43 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:28:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:28:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:45 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:28:45 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:45 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:28:45 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:28:45 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:28:45 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:28:45 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:28:45 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:45 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:28:45 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:28:45 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:28:45 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:28:45 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:28:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:28:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:28:45 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:45 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:28:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:28:45 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:28:45 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:45 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:28:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:28:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:28:45 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:45 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:28:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:28:45 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:28:45 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:28:45 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:28:45 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:45 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:28:45 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:28:45 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:28:45 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:28:46 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:28:46 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:28:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:28:51 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:28:51 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:51 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:28:51 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:51 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:28:51 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:28:51 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:28:51 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:28:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:28:51 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:51 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:51 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:28:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:28:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:28:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:28:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:28:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:28:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:28:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:28:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:28:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:28:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:28:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:28:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:28:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:28:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:28:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:28:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:28:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:28:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference']", 'Base')" 2021-12-14 00:28:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference'] found." 2021-12-14 00:28:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference'] found." 2021-12-14 00:28:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference']", 'Base')" 2021-12-14 00:28:52 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference']" 2021-12-14 00:28:52 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference'] was clicked" 2021-12-14 00:28:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:28:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:28:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:28:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:28:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:28:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:28:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:28:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:54 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:28:54 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:54 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:28:54 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:28:54 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:28:55 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:28:55 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:28:55 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:55 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:28:55 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:28:55 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:28:55 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:28:55 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:28:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:28:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:28:55 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:55 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:28:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:28:55 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:28:55 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:55 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:28:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:28:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:28:55 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:55 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:28:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:28:55 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:28:55 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:28:55 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:28:55 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:28:55 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:28:55 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:28:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:28:55 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:28:55 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:28:56 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:28:56 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:29:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:29:01 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:29:01 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:01 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:29:01 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:01 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:29:01 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:29:01 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:29:02 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:29:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:29:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:29:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:29:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:29:02 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:29:02 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:29:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 00:29:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:29:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 00:29:02 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 00:29:02 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version']", 'Base')" 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version'] found." 2021-12-14 00:29:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version'] found." 2021-12-14 00:29:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version']", 'Base')" 2021-12-14 00:29:02 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version']" 2021-12-14 00:29:03 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version'] was clicked" 2021-12-14 00:29:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:29:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:29:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:29:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:29:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:29:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:29:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:29:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:04 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:29:04 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:04 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:29:04 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:29:04 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:29:05 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:29:05 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:29:05 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:05 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:29:05 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:29:05 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:29:05 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:29:05 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:29:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:29:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:29:05 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:05 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:29:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:29:05 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:29:05 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:05 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:29:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:29:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:29:05 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:05 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:29:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:29:05 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:29:05 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:29:05 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:29:05 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:05 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:29:05 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:29:05 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:29:05 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:29:05 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:29:05 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:29:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:29:12 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:29:12 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:12 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:29:12 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:12 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:29:12 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:29:12 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:29:12 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:29:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:29:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:29:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:29:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:29:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:29:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:29:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:29:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:29:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 00:29:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:29:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control']", 'Base')" 2021-12-14 00:29:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control'] found." 2021-12-14 00:29:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control'] found." 2021-12-14 00:29:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control']", 'Base')" 2021-12-14 00:29:13 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control']" 2021-12-14 00:29:13 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control'] was clicked" 2021-12-14 00:29:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:29:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:29:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:29:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:29:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:29:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:29:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:29:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:16 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:29:16 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:16 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:29:16 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:29:16 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:29:16 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:29:16 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:29:16 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:16 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:29:16 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:29:16 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:29:16 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:29:16 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:29:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:29:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:29:16 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:16 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:29:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:29:16 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:29:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:29:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:29:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:29:16 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:16 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:29:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:29:16 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:29:16 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:29:16 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:29:16 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:16 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:29:16 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:29:16 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:29:16 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:29:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:29:17 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:29:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:29:22 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:29:22 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:22 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:29:22 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:22 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:29:22 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:29:22 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:29:22 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:29:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:29:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:22 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:29:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:29:23 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:23 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:29:23 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:29:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:29:23 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:29:23 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:29:23 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:23 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:29:23 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:29:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 00:29:23 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:29:23 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine']", 'Base')" 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine'] found." 2021-12-14 00:29:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine'] found." 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine']", 'Base')" 2021-12-14 00:29:23 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine']" 2021-12-14 00:29:23 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine'] was clicked" 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:29:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:29:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:29:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:29:24 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:29:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:29:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:29:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:29:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:29:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:29:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:29:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:29:26 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:26 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:29:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:29:26 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:29:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:29:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:29:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:29:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:29:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:29:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:29:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:29:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:29:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:29:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:29:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:27 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:29:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:29:27 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:29:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:29:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:29:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:29:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:29:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:29:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:29:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:29:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:29:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:29:34 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:29:34 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:34 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:29:34 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:34 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:29:34 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:29:34 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:29:34 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:29:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:29:34 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:34 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:29:34 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:29:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:29:34 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:29:34 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:29:34 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:34 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:29:34 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:29:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 00:29:34 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:29:34 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference']", 'Base')" 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference'] found." 2021-12-14 00:29:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference'] found." 2021-12-14 00:29:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference']", 'Base')" 2021-12-14 00:29:34 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference']" 2021-12-14 00:29:35 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference'] was clicked" 2021-12-14 00:29:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:29:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:29:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:29:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:29:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:29:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:29:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:29:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:29:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:29:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:29:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:29:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:29:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:29:37 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:37 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:29:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:29:38 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:29:38 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:29:38 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:29:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:29:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:29:38 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:38 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:29:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:29:38 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:29:38 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:38 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:29:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:29:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:29:38 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:38 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:29:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:29:38 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:29:38 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:29:38 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:29:38 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:38 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:29:38 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:29:38 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:29:38 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:29:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:29:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:29:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:29:44 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:29:44 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:44 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:29:44 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:44 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:29:44 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:29:44 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:29:45 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:29:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:29:45 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:45 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:29:45 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:29:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:29:45 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:29:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:29:45 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:45 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:29:45 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:29:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 00:29:45 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:29:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector']", 'Base')" 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector'] found." 2021-12-14 00:29:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector'] found." 2021-12-14 00:29:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector']", 'Base')" 2021-12-14 00:29:45 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector']" 2021-12-14 00:29:46 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector'] was clicked" 2021-12-14 00:29:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:29:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:46 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:29:46 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:46 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:29:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:29:46 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:29:46 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:46 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:29:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:29:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:48 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:29:48 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:48 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:29:48 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:29:48 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:29:48 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:29:48 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:29:48 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:48 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:29:48 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:29:49 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:29:49 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:29:49 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:29:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:29:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:29:49 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:49 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:29:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:29:49 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:29:49 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:49 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:29:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:29:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:29:49 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:49 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:29:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:29:49 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:29:49 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:29:49 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:29:49 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:49 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:29:49 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:29:49 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:29:49 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:29:49 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:29:49 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:29:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:29:55 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:29:55 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:55 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:29:55 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:55 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:29:55 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:29:55 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:29:55 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:29:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:29:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:29:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:29:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:29:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:29:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:29:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:29:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:29:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:29:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:29:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 00:29:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:29:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen']", 'Base')" 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen'] found." 2021-12-14 00:29:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen'] found." 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen']", 'Base')" 2021-12-14 00:29:56 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen']" 2021-12-14 00:29:56 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen'] was clicked" 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:29:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:29:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:29:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:29:57 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:57 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:29:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:29:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:59 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:29:59 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:59 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:29:59 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:29:59 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:29:59 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:29:59 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:29:59 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:59 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:29:59 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:29:59 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:29:59 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:29:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:29:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:29:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:29:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:29:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:29:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:29:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:29:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:29:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:29:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:29:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:29:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:29:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:29:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:30:00 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:30:00 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:30:00 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:00 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:30:00 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:30:00 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:30:00 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:30:00 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:30:00 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:30:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:30:08 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:30:08 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:08 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:30:08 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:08 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:30:08 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:30:08 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:30:08 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:30:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:30:08 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:08 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:08 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:30:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:30:09 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:09 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:30:09 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:30:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:30:09 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:30:09 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:30:09 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:09 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:30:09 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:30:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 00:30:09 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:30:09 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board']", 'Base')" 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board'] found." 2021-12-14 00:30:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board'] found." 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board']", 'Base')" 2021-12-14 00:30:09 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board']" 2021-12-14 00:30:09 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board'] was clicked" 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:30:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:10 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:30:10 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:10 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:30:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:30:10 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:30:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:10 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:30:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:30:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:12 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:30:12 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:12 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:30:12 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:30:12 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:30:12 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:30:12 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:30:12 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:12 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:30:12 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:30:13 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:30:13 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:30:13 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:30:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:30:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:30:13 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:13 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:30:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:30:13 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:30:13 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:13 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:30:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:30:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:30:13 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:13 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:30:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:30:13 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:30:13 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:30:13 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:30:13 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:13 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:30:13 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:30:13 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:30:13 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:30:13 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:30:13 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:30:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:30:20 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:30:20 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:20 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:30:21 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:21 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:30:21 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:30:21 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:30:21 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:30:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:30:21 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:21 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:30:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:30:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:30:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:30:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:30:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:30:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:30:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:30:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:30:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:30:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:30:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:30:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:30:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:30:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 00:30:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:30:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 00:30:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system']", 'Base')" 2021-12-14 00:30:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system'] found." 2021-12-14 00:30:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system'] found." 2021-12-14 00:30:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system']", 'Base')" 2021-12-14 00:30:22 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system']" 2021-12-14 00:30:23 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system'] was clicked" 2021-12-14 00:30:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:30:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:30:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:30:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:30:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:30:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:30:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:30:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:30:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:30:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:30:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:30:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:30:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:30:25 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:25 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:30:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:30:25 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:30:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:30:25 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:30:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:30:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:30:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:30:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:30:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:30:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:30:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:30:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:30:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:30:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:30:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:30:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:30:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:30:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:30:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:30:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:30:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:30:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:30:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:30:32 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:30:32 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:30:32 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:32 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:30:32 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:32 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:30:32 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:30:32 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:30:32 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:30:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:30:32 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:32 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:32 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:30:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:30:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:30:32 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:32 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:30:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:30:32 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:30:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:30:32 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:30:32 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:30:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:30:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:30:32 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:32 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 00:30:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 00:30:32 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:30:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 00:30:32 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 00:30:33 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 00:30:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone']", 'Base')" 2021-12-14 00:30:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone'] found." 2021-12-14 00:30:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone'] found." 2021-12-14 00:30:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone']", 'Base')" 2021-12-14 00:30:33 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone']" 2021-12-14 00:30:33 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone'] was clicked" 2021-12-14 00:30:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:30:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:30:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:30:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:30:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:30:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:33 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:30:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:30:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:35 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:30:35 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:35 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:30:35 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:30:35 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:30:35 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:30:35 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:30:35 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:35 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:30:35 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:30:35 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:30:35 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:30:35 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:30:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:30:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:30:35 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:35 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:30:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:30:35 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:30:36 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:36 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:30:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:30:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:30:36 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:36 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:30:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:30:36 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:30:36 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:30:36 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:30:36 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:36 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:30:36 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:30:36 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:30:36 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:30:36 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:30:36 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:30:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:30:42 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:30:42 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:42 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:30:42 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:42 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:30:42 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:30:42 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:30:43 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:43 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:43 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:30:43 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:43 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:30:43 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:43 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:30:43 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:30:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:30:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:30:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:30:43 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:43 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:30:43 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:30:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 00:30:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:30:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross']", 'Base')" 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross'] found." 2021-12-14 00:30:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross'] found." 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross']", 'Base')" 2021-12-14 00:30:43 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross']" 2021-12-14 00:30:43 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross'] was clicked" 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:30:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:30:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:30:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:30:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:30:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:30:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:30:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:30:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:30:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:30:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:30:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:30:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:30:46 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:46 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:30:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:30:46 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:30:46 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:30:46 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:30:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:30:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:30:46 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:46 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:30:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:30:46 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:30:46 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:46 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:30:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:30:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:30:46 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:30:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:30:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:30:47 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:30:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:30:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:30:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:30:47 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:30:47 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:30:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:30:47 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:30:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:30:53 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:30:53 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:53 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:30:53 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:53 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:30:53 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:30:53 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:30:53 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:30:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:30:53 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:53 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:53 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:30:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:30:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:30:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:53 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:30:53 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:53 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:30:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:30:53 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:30:53 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:53 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:30:53 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:30:53 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:30:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:30:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:53 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:30:53 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:53 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:30:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:30:53 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:30:53 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:53 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 00:30:53 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:30:54 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 00:30:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net']", 'Base')" 2021-12-14 00:30:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net'] found." 2021-12-14 00:30:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net'] found." 2021-12-14 00:30:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net']", 'Base')" 2021-12-14 00:30:54 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net']" 2021-12-14 00:30:54 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net'] was clicked" 2021-12-14 00:30:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:30:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:30:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:30:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:30:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:30:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:30:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:30:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:56 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:30:56 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:56 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:30:56 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:30:56 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:30:56 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:30:56 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:30:56 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:56 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:30:56 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:30:57 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:30:57 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:30:57 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:30:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:30:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:30:57 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:57 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:30:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:30:57 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:30:57 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:57 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:30:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:30:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:30:57 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:57 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:30:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:30:57 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:30:57 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:30:57 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:30:57 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:30:57 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:30:57 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:30:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:30:57 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:30:57 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:30:57 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:30:57 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:31:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:31:03 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:31:03 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:03 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:31:03 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:03 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:31:03 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:31:03 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:31:04 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:31:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:31:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:31:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:31:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:31:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:31:04 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:31:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:31:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:31:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 00:31:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:31:04 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height']", 'Base')" 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height'] found." 2021-12-14 00:31:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height'] found." 2021-12-14 00:31:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height']", 'Base')" 2021-12-14 00:31:04 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height']" 2021-12-14 00:31:05 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height'] was clicked" 2021-12-14 00:31:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:31:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:05 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:31:05 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:05 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:31:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:31:05 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:31:05 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:05 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:31:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:31:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:31:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:31:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:31:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:31:08 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:31:08 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:31:08 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:08 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:31:08 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:31:08 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:31:08 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:31:08 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:31:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:31:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:31:08 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:08 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:31:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:31:08 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:31:08 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:08 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:31:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:31:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:31:08 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:08 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:31:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:31:08 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:31:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:31:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:31:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:31:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:31:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:31:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:31:09 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:31:09 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:31:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:31:15 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:31:15 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:15 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:31:15 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:15 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:31:15 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:31:15 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:31:15 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:31:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:31:15 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:15 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:15 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:31:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:16 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:31:16 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:16 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:31:16 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:31:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:31:16 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:31:16 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:31:16 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:16 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:31:16 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:31:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 00:31:16 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:31:16 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length']", 'Base')" 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length'] found." 2021-12-14 00:31:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length'] found." 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length']", 'Base')" 2021-12-14 00:31:16 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length']" 2021-12-14 00:31:16 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length'] was clicked" 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:31:16 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:16 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:31:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:31:16 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:31:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:31:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:31:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:18 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:31:18 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:18 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:31:18 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:31:18 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:31:18 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:31:18 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:31:18 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:18 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:31:18 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:31:19 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:31:19 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:31:19 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:31:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:31:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:31:19 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:19 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:31:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:31:19 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:31:19 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:19 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:31:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:31:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:31:19 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:19 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:31:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:31:19 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:31:19 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:31:19 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:31:19 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:19 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:31:19 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:31:19 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:31:19 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:31:19 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:31:19 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:31:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:31:26 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:31:26 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:26 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:31:26 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:26 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:31:26 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:31:26 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:31:26 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:31:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:31:26 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:26 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:31:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:31:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:31:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:31:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:31:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:31:27 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:31:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:31:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:31:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 00:31:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:31:27 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width']", 'Base')" 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width'] found." 2021-12-14 00:31:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width'] found." 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width']", 'Base')" 2021-12-14 00:31:27 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width']" 2021-12-14 00:31:27 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width'] was clicked" 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:31:27 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:27 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:31:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:31:27 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:31:27 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:31:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:31:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:29 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:31:29 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:29 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:31:29 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:31:29 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:31:29 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:31:29 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:31:29 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:29 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:31:29 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:31:30 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:31:30 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:31:30 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:31:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:31:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:31:30 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:30 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:31:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:31:30 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:31:30 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:30 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:31:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:31:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:31:30 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:30 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:31:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:31:30 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:31:30 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:31:30 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:31:30 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:30 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:31:30 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:31:30 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:31:30 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:31:30 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:31:30 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:31:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:31:37 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:31:37 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:37 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:31:37 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:37 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:31:37 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:31:37 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:31:37 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:31:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:31:37 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:37 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:31:37 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:31:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:31:37 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:31:37 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:31:37 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:37 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:31:37 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:31:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 00:31:37 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:31:37 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Weight']", 'Base')" 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Weight'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Weight'] found." 2021-12-14 00:31:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Weight'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Weight'] found." 2021-12-14 00:31:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Weight']", 'Base')" 2021-12-14 00:31:37 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Weight']" 2021-12-14 00:31:38 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Weight'] was clicked" 2021-12-14 00:31:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:31:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:38 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:31:38 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:38 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:31:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:31:38 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:31:38 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:31:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:31:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:40 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:31:40 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:40 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:31:40 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:31:40 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:31:40 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:31:40 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:31:40 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:40 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:31:40 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:31:40 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:31:40 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:31:40 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:31:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:31:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:31:40 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:40 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:31:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:31:40 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:31:40 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:40 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:31:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:31:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:31:40 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:40 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:31:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:31:40 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:31:40 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:31:40 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:31:40 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:40 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:31:40 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:31:41 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:31:41 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:31:41 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:31:41 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:31:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:31:47 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:31:47 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:47 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:31:47 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:47 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:31:47 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:31:47 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:31:47 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:31:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:31:47 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:47 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:47 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:47 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:31:47 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:31:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:31:47 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:47 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:31:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:31:47 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:31:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:31:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:31:48 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:31:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:31:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:48 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:31:48 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:48 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:31:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:31:48 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:31:48 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:48 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 00:31:48 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:31:48 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 00:31:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Space']", 'Base')" 2021-12-14 00:31:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Space'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:48 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Space'] found." 2021-12-14 00:31:48 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Space'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:48 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Space'] found." 2021-12-14 00:31:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Space']", 'Base')" 2021-12-14 00:31:48 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Space']" 2021-12-14 00:31:48 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Space'] was clicked" 2021-12-14 00:31:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:31:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:48 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:31:48 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:48 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:31:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:31:48 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:31:48 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:48 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:31:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:31:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:51 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:31:51 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:51 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:31:51 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:31:51 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:31:51 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:31:51 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:31:51 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:51 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:31:51 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:31:51 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:31:51 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:31:51 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:31:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:31:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:31:51 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:51 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:31:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:31:51 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:31:51 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:51 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:31:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:31:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:31:51 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:51 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:31:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:31:51 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:31:52 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:31:52 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:31:52 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:31:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:31:52 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:31:52 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:31:52 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:31:52 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:31:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:31:58 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:31:58 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:58 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:31:58 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:58 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:31:58 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:31:58 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:31:58 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:31:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:31:58 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:58 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:58 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:31:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:31:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:31:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:58 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:31:58 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:58 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:31:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:31:58 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:31:58 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:58 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:31:58 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:31:58 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:31:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:31:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:58 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:31:58 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:58 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:31:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:31:58 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:31:58 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:58 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 00:31:58 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:31:59 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 00:31:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Seats']", 'Base')" 2021-12-14 00:31:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Seats'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Seats'] found." 2021-12-14 00:31:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Seats'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Seats'] found." 2021-12-14 00:31:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Seats']", 'Base')" 2021-12-14 00:31:59 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Seats']" 2021-12-14 00:31:59 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Seats'] was clicked" 2021-12-14 00:31:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:31:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:31:59 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:31:59 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:59 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:31:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:31:59 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:31:59 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:31:59 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:32:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:32:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:01 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:32:01 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:01 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:32:01 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:32:01 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:32:01 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:32:01 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:32:01 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:01 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:32:01 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:32:01 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:32:01 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:32:01 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:32:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:32:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:32:01 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:01 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:32:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:32:01 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:32:01 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:02 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:32:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:32:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:32:02 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:02 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:32:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:32:02 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:32:02 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:32:02 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:32:02 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:02 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:32:02 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:32:02 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:32:02 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:32:02 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:32:02 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:32:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:32:09 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:32:09 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:09 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:32:09 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:09 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:32:09 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:32:09 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:32:10 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:32:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:32:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:32:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:32:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:32:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:32:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:32:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 00:32:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:32:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 00:32:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 00:32:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='People - Maximum']", 'Base')" 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='People - Maximum'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='People - Maximum'] found." 2021-12-14 00:32:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='People - Maximum'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='People - Maximum'] found." 2021-12-14 00:32:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='People - Maximum']", 'Base')" 2021-12-14 00:32:10 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='People - Maximum']" 2021-12-14 00:32:11 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='People - Maximum'] was clicked" 2021-12-14 00:32:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:32:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:32:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:32:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:32:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:32:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:32:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:32:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:13 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:32:13 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:13 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:32:13 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:32:13 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:32:13 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:32:13 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:32:13 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:13 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:32:13 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:32:14 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:32:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:32:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:32:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:32:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:32:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:32:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:32:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:32:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:14 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:32:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:32:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:32:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:14 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:32:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:32:14 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:32:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:32:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:32:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:14 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:32:14 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:32:14 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:32:14 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:32:14 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:32:14 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:32:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:32:20 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:32:20 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:20 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:32:20 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:20 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:32:20 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:32:20 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:32:21 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:21 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:32:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:21 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:32:21 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:21 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:32:21 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:32:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:32:21 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:32:21 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:32:21 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:21 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:32:21 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:32:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. found." 2021-12-14 00:32:21 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:32:21 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] was clicked" 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Density']", 'Base')" 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Density'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Density'] found." 2021-12-14 00:32:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Density'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Density'] found." 2021-12-14 00:32:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Density']", 'Base')" 2021-12-14 00:32:21 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Density']" 2021-12-14 00:32:22 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Density'] was clicked" 2021-12-14 00:32:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:32:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:22 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:32:22 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:22 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:32:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:32:22 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:32:22 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:22 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:32:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:32:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:24 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:32:24 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:24 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:32:24 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:32:24 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:32:24 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:32:24 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:32:24 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:24 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:32:24 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:32:24 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:32:24 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:32:24 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:32:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:32:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:32:24 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:24 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:32:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:32:24 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:32:24 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:24 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:32:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:32:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:32:25 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:25 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:32:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:32:25 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:32:25 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:32:25 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:32:25 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:25 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:32:25 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:32:25 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:32:25 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:32:25 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:32:25 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:32:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:32:31 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:32:31 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:31 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:32:31 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:31 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:32:31 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:32:31 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:32:31 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:32:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:32:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:32:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:32:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:32:32 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:32 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:32:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:32:32 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:32:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:32:32 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:32:32 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:32:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:32:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:32:32 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:32 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:32:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:32:32 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:32:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. found." 2021-12-14 00:32:32 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:32:32 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] was clicked" 2021-12-14 00:32:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='pH']", 'Base')" 2021-12-14 00:32:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='pH'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='pH'] found." 2021-12-14 00:32:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='pH'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='pH'] found." 2021-12-14 00:32:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='pH']", 'Base')" 2021-12-14 00:32:32 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='pH']" 2021-12-14 00:32:33 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='pH'] was clicked" 2021-12-14 00:32:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:32:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:32:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:32:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:32:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:32:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:33 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:32:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:32:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:35 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:32:35 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:35 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:32:35 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:32:35 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:32:35 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:32:35 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:32:35 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:35 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:32:35 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:32:35 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:32:35 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:32:35 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:32:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:32:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:32:35 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:35 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:32:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:32:35 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:32:35 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:35 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:32:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:32:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:32:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:32:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:32:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:32:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:32:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:32:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:32:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:32:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:32:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:32:36 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:32:36 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:32:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:32:42 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:32:42 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:42 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:32:42 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:42 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:32:42 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:32:42 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:32:42 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:32:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:32:42 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:32:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:32:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:32:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:43 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:32:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:32:43 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:32:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:32:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:32:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:32:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:32:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:32:43 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:43 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:32:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:32:43 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:32:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. found." 2021-12-14 00:32:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:32:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] was clicked" 2021-12-14 00:32:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Enthalpy']", 'Base')" 2021-12-14 00:32:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Enthalpy'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Enthalpy'] found." 2021-12-14 00:32:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Enthalpy'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Enthalpy'] found." 2021-12-14 00:32:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Enthalpy']", 'Base')" 2021-12-14 00:32:43 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Enthalpy']" 2021-12-14 00:32:44 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Enthalpy'] was clicked" 2021-12-14 00:32:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:32:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:32:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:32:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:32:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:32:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:32:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:32:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:32:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:32:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:32:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:32:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:32:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:32:47 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:47 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:32:47 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:32:48 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:32:48 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:32:48 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:32:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:32:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:32:48 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:48 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:32:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:32:48 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:32:48 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:48 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:32:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:32:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:32:49 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:49 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:32:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:32:49 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:32:49 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:32:49 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:32:49 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:49 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:32:49 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:32:49 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:32:49 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:32:49 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:32:49 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:32:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:32:56 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:32:56 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:56 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:32:56 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:56 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:32:56 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:32:56 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:32:56 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:32:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:32:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:32:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:32:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:32:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:32:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:32:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:32:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:32:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. found." 2021-12-14 00:32:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:32:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] was clicked" 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Entropy']", 'Base')" 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Entropy'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Entropy'] found." 2021-12-14 00:32:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Entropy'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Entropy'] found." 2021-12-14 00:32:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Entropy']", 'Base')" 2021-12-14 00:32:56 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Entropy']" 2021-12-14 00:32:57 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Entropy'] was clicked" 2021-12-14 00:32:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:32:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:57 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:32:57 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:57 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:32:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:32:57 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:32:57 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:57 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:32:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:32:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:58 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:32:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:59 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:32:59 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:32:59 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:32:59 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:32:59 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:32:59 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:59 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:32:59 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:32:59 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:32:59 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:32:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:32:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:32:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:32:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:32:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:32:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:32:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:32:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:32:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:32:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:32:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:32:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:32:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:32:59 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:32:59 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:32:59 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:32:59 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:32:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:32:59 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:32:59 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:33:00 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:33:00 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:33:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:33:06 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:33:06 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:06 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:33:06 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:06 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:33:06 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:33:06 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:33:06 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:33:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:33:06 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:06 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:06 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:33:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:33:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:33:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:33:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:33:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:33:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:33:07 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:33:07 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:33:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:33:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:33:07 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:07 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:33:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:33:07 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:33:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. found." 2021-12-14 00:33:07 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:33:07 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] was clicked" 2021-12-14 00:33:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Mass']", 'Base')" 2021-12-14 00:33:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Mass'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Mass'] found." 2021-12-14 00:33:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Mass'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Mass'] found." 2021-12-14 00:33:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Mass']", 'Base')" 2021-12-14 00:33:07 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Mass']" 2021-12-14 00:33:07 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Mass'] was clicked" 2021-12-14 00:33:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:33:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:33:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:08 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:33:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:33:08 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:33:08 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:08 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:33:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:33:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:09 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:33:09 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:09 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:33:09 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:33:09 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:33:09 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:33:09 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:33:09 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:09 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:33:09 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:33:09 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:33:09 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:33:09 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:33:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:33:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:33:09 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:33:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:33:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:33:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:10 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:33:10 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:33:10 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:10 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:33:10 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:10 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:33:10 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:33:10 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:33:10 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:33:10 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:33:10 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:10 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:33:10 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:33:10 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:33:10 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:33:10 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:33:10 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:33:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:33:16 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:33:16 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:16 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:33:16 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:16 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:33:16 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:33:16 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:33:16 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:33:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:33:16 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:16 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:16 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:17 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:33:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:33:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:33:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:33:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:33:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:33:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:33:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:33:17 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:33:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:33:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:33:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:33:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:33:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:33:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. found." 2021-12-14 00:33:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:33:17 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] was clicked" 2021-12-14 00:33:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Rotation']", 'Base')" 2021-12-14 00:33:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Rotation'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Rotation'] found." 2021-12-14 00:33:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Rotation'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Rotation'] found." 2021-12-14 00:33:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Rotation']", 'Base')" 2021-12-14 00:33:17 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Rotation']" 2021-12-14 00:33:18 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Rotation'] was clicked" 2021-12-14 00:33:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:33:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:18 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:33:18 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:18 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:33:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:33:18 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:33:18 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:18 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:33:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:33:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:19 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:33:19 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:19 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:33:19 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:33:19 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:33:20 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:33:20 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:33:20 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:20 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:33:20 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:33:20 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:33:20 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:33:20 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:33:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:33:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:33:20 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:20 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:33:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:33:20 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:33:20 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:20 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:33:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:33:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:33:20 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:20 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:33:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:33:20 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:33:20 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:33:20 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:33:20 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:20 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:33:20 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:33:20 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:33:20 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:33:21 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:33:21 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:33:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:33:27 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:33:27 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:27 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:33:27 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:27 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:33:27 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:33:27 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:33:27 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:33:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:33:27 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:27 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:27 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:33:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:33:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:33:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:33:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:33:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:33:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:33:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:33:27 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:33:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:33:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:33:28 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:28 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:33:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:33:28 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:33:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. found." 2021-12-14 00:33:28 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:33:28 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] was clicked" 2021-12-14 00:33:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Material']", 'Base')" 2021-12-14 00:33:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Material'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Material'] found." 2021-12-14 00:33:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Material'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Material'] found." 2021-12-14 00:33:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Material']", 'Base')" 2021-12-14 00:33:28 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Material']" 2021-12-14 00:33:28 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Material'] was clicked" 2021-12-14 00:33:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:33:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:33:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:33:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:33:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:33:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:33:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:33:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:30 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:33:30 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:30 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:33:30 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:33:30 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:33:30 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:33:30 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:33:30 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:30 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:33:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:33:30 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:33:30 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:33:30 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:33:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:33:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:33:31 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:31 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:33:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:33:31 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:33:31 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:31 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:33:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:33:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:33:31 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:31 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:33:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:33:31 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:33:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:33:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:33:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:33:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:33:31 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:33:31 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:33:31 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:33:31 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:33:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:33:38 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:33:38 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:38 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:33:38 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:38 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:33:38 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:33:38 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:33:38 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:33:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:33:38 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:38 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:38 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:33:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:33:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:33:38 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:38 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:33:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:33:38 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:33:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:33:38 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:33:38 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:33:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:33:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:33:38 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:38 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:33:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:33:38 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:33:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. found." 2021-12-14 00:33:39 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:33:39 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] was clicked" 2021-12-14 00:33:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Color']", 'Base')" 2021-12-14 00:33:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Color'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Color'] found." 2021-12-14 00:33:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Color'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Color'] found." 2021-12-14 00:33:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Color']", 'Base')" 2021-12-14 00:33:39 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Color']" 2021-12-14 00:33:39 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Color'] was clicked" 2021-12-14 00:33:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:33:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:39 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:33:39 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:39 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:33:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:33:39 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:33:39 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:39 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:33:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:33:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:41 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:33:41 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:41 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:33:41 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:33:41 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:33:41 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:33:41 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:33:41 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:41 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:33:41 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:33:41 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:33:41 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:33:41 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:33:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:33:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:33:41 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:41 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:33:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:33:41 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:33:41 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:41 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:33:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:33:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:33:42 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:42 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:33:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:33:42 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:33:42 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:33:42 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:33:42 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:42 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:33:42 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:33:42 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:33:42 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:33:42 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:33:42 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:33:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:33:48 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:33:48 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:48 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:33:48 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:48 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:33:48 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:33:48 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:33:49 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:33:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:33:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:33:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:33:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:33:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:33:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:33:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:33:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:33:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. found." 2021-12-14 00:33:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:33:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] was clicked" 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Speed']", 'Base')" 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Speed'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Speed'] found." 2021-12-14 00:33:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Speed'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Speed'] found." 2021-12-14 00:33:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Speed']", 'Base')" 2021-12-14 00:33:49 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Speed']" 2021-12-14 00:33:50 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Speed'] was clicked" 2021-12-14 00:33:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:33:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:50 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:33:50 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:50 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:33:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:33:50 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:33:50 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:50 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:33:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:33:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:33:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:33:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:33:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:33:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:33:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:33:52 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:52 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:33:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:33:52 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:33:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:33:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:33:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:33:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:33:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:33:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:33:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:33:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:52 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:33:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:33:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:33:52 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:52 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:33:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:33:52 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:33:52 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:33:52 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:33:52 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:33:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:33:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:33:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:33:52 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:33:52 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:33:53 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:33:53 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:34:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:34:01 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:34:01 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:01 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:34:01 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:01 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:34:01 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:34:01 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:34:02 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:34:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:34:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 00:34:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:34:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 00:34:02 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 00:34:02 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:34:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] found." 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']", 'Expandable')" 2021-12-14 00:34:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:34:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/.. found." 2021-12-14 00:34:02 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']" 2021-12-14 00:34:02 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics'] was clicked" 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Liquid']", 'Base')" 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Liquid'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Liquid'] found." 2021-12-14 00:34:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Liquid'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Liquid'] found." 2021-12-14 00:34:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Liquid']", 'Base')" 2021-12-14 00:34:03 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Liquid']" 2021-12-14 00:34:03 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Physics']/../..//*[contains(@class,'depth2')]//*[text()='Volume - Liquid'] was clicked" 2021-12-14 00:34:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:34:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:34:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:34:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:34:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:34:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:34:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:34:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:05 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:34:05 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:05 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:34:05 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:34:05 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:34:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:34:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:34:06 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:06 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:34:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:34:06 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:34:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:34:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:34:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:34:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:34:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:34:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:34:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:34:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:34:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:34:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:34:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:34:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:34:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:34:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:34:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:34:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:34:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:34:06 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:34:06 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:34:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:34:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:34:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:34:15 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:34:15 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:15 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:34:15 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:15 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:34:15 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:34:15 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:34:15 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:34:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:34:15 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:15 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:15 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:34:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Shutter']", 'Expandable')" 2021-12-14 00:34:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:15 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter'] found." 2021-12-14 00:34:15 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:15 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter'] found." 2021-12-14 00:34:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Shutter']", 'Expandable')" 2021-12-14 00:34:15 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']" 2021-12-14 00:34:15 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:15 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/.. found." 2021-12-14 00:34:15 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']" 2021-12-14 00:34:15 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter'] was clicked" 2021-12-14 00:34:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Auto/Manu']", 'Base')" 2021-12-14 00:34:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Auto/Manu'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:15 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Auto/Manu'] found." 2021-12-14 00:34:15 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Auto/Manu'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:15 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Auto/Manu'] found." 2021-12-14 00:34:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Auto/Manu']", 'Base')" 2021-12-14 00:34:15 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Auto/Manu']" 2021-12-14 00:34:16 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Auto/Manu'] was clicked" 2021-12-14 00:34:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:34:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:16 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:34:16 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:16 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:34:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:34:16 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:34:16 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:16 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:34:17 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:34:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:17 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:34:17 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:17 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:34:17 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:34:17 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:34:17 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:34:17 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:34:17 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:18 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:34:18 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:34:18 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:34:18 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:34:18 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:34:18 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:34:18 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:18 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:34:18 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:18 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:34:18 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:34:18 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:34:18 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:18 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:34:18 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:34:18 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:18 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:34:18 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:18 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:34:18 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:34:18 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:34:18 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:34:18 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:34:18 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:18 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:34:18 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:18 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:34:18 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:34:18 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:34:19 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:34:19 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:34:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:34:25 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:34:25 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:25 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:34:25 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:25 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:34:25 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:34:25 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:34:26 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:34:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Shutter']", 'Expandable')" 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter'] found." 2021-12-14 00:34:26 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:26 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter'] found." 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Shutter']", 'Expandable')" 2021-12-14 00:34:26 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']" 2021-12-14 00:34:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/.. found." 2021-12-14 00:34:26 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']" 2021-12-14 00:34:26 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter'] was clicked" 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Up/Down']", 'Base')" 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Up/Down'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Up/Down'] found." 2021-12-14 00:34:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Up/Down'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Up/Down'] found." 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Up/Down']", 'Base')" 2021-12-14 00:34:26 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Up/Down']" 2021-12-14 00:34:26 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Up/Down'] was clicked" 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:34:26 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:26 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:34:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:34:26 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:34:27 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:34:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:34:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:29 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:34:29 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:31 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:34:31 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:34:31 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:34:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:34:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:34:32 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:32 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:34:32 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:34:32 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:34:32 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:34:32 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:34:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:34:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:34:32 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:32 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:34:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:34:32 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:34:32 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:32 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:34:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:34:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:34:32 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:32 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:34:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:34:32 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:34:32 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:34:32 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:34:32 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:32 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:34:32 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:32 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:34:32 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:34:32 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:34:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:34:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:34:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:34:39 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:34:39 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:39 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:34:39 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:39 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:34:39 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:34:39 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:34:39 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:34:39 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:34:39 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:39 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:39 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:34:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Shutter']", 'Expandable')" 2021-12-14 00:34:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter'] found." 2021-12-14 00:34:39 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:39 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter'] found." 2021-12-14 00:34:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Shutter']", 'Expandable')" 2021-12-14 00:34:39 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']" 2021-12-14 00:34:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/.. found." 2021-12-14 00:34:40 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']" 2021-12-14 00:34:40 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter'] was clicked" 2021-12-14 00:34:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Left/Right']", 'Base')" 2021-12-14 00:34:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Left/Right'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Left/Right'] found." 2021-12-14 00:34:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Left/Right'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Left/Right'] found." 2021-12-14 00:34:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Left/Right']", 'Base')" 2021-12-14 00:34:40 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Left/Right']" 2021-12-14 00:34:40 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Left/Right'] was clicked" 2021-12-14 00:34:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:34:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:40 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:34:40 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:34:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:34:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:34:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:34:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:34:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:42 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:34:42 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:42 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:34:42 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:34:42 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:34:42 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:34:42 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:34:42 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:42 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:34:42 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:34:42 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:34:42 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:34:42 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:34:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:34:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:34:43 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:43 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:34:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:34:43 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:34:43 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:43 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:34:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:34:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:34:43 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:43 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:34:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:34:43 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:34:43 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:34:43 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:34:43 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:43 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:34:43 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:34:43 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:34:43 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:34:43 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:34:43 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:34:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:34:49 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:34:49 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:49 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:34:49 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:49 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:34:49 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:34:49 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:34:50 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:50 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:50 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:34:50 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:50 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Shutter']", 'Expandable')" 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter'] found." 2021-12-14 00:34:50 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:50 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter'] found." 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Shutter']", 'Expandable')" 2021-12-14 00:34:50 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']" 2021-12-14 00:34:50 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:50 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/.. found." 2021-12-14 00:34:50 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']" 2021-12-14 00:34:50 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter'] was clicked" 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Inclination']", 'Base')" 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Inclination'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Inclination'] found." 2021-12-14 00:34:50 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Inclination'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:50 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Inclination'] found." 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Inclination']", 'Base')" 2021-12-14 00:34:50 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Inclination']" 2021-12-14 00:34:50 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Inclination'] was clicked" 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:34:50 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:50 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:34:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:34:50 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:34:50 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:50 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:34:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:34:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:34:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:34:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:34:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:34:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:34:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:34:52 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:52 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:34:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:34:52 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:34:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:34:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:34:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:34:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:34:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:34:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:34:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:34:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:52 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:34:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:34:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:34:52 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:52 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:34:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:34:52 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:34:53 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:34:53 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:34:53 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:53 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:34:53 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:34:53 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:34:53 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:34:53 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:34:53 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:34:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:34:59 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:34:59 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:59 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:34:59 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:34:59 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:34:59 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:34:59 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:34:59 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:34:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:34:59 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:34:59 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:34:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:00 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:35:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Shutter']", 'Expandable')" 2021-12-14 00:35:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter'] found." 2021-12-14 00:35:00 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:00 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter'] found." 2021-12-14 00:35:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Shutter']", 'Expandable')" 2021-12-14 00:35:00 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']" 2021-12-14 00:35:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/.. found." 2021-12-14 00:35:00 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']" 2021-12-14 00:35:00 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter'] was clicked" 2021-12-14 00:35:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Level']", 'Base')" 2021-12-14 00:35:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Level'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Level'] found." 2021-12-14 00:35:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Level'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Level'] found." 2021-12-14 00:35:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Level']", 'Base')" 2021-12-14 00:35:00 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Level']" 2021-12-14 00:35:00 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Shutter']/../..//*[text()='Level'] was clicked" 2021-12-14 00:35:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:35:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:35:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:35:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:35:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:35:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:35:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:35:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:01 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:35:01 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:02 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:35:02 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:35:02 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:35:02 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:35:02 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:35:02 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:02 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:35:02 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:35:02 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:35:02 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:35:02 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:35:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:35:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:35:02 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:02 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:35:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:35:02 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:35:02 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:02 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:35:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:35:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:35:02 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:02 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:35:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:35:02 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:35:02 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:35:02 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:35:02 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:02 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:35:02 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:35:02 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:35:02 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:35:03 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:35:03 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:35:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:35:09 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:35:09 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:09 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:35:09 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:09 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:35:09 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:35:09 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:35:09 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:35:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:35:09 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:09 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:35:09 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:35:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:35:09 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:35:09 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:35:09 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:09 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:35:09 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:35:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. found." 2021-12-14 00:35:09 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:35:09 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] was clicked" 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Ambient']", 'Base')" 2021-12-14 00:35:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Ambient'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Ambient'] found." 2021-12-14 00:35:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Ambient'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Ambient'] found." 2021-12-14 00:35:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Ambient']", 'Base')" 2021-12-14 00:35:10 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Ambient']" 2021-12-14 00:35:10 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Ambient'] was clicked" 2021-12-14 00:35:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:35:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:10 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:35:10 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:10 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:35:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:35:10 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:35:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:10 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:35:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:35:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:12 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:35:12 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:12 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:35:12 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:35:12 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:35:12 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:35:12 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:35:12 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:12 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:35:12 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:35:12 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:35:12 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:35:12 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:35:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:35:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:35:12 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:12 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:35:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:35:12 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:35:12 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:12 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:35:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:35:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:35:12 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:12 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:35:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:35:12 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:35:13 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:35:13 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:35:13 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:13 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:35:13 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:35:13 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:35:13 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:35:13 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:35:13 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:35:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:35:20 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:35:20 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:20 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:35:20 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:20 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:35:20 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:35:20 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:35:20 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:35:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:35:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:35:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:35:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:35:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:35:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:35:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:35:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:35:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. found." 2021-12-14 00:35:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:35:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] was clicked" 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Difference']", 'Base')" 2021-12-14 00:35:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Difference'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Difference'] found." 2021-12-14 00:35:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Difference'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Difference'] found." 2021-12-14 00:35:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Difference']", 'Base')" 2021-12-14 00:35:21 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Difference']" 2021-12-14 00:35:21 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Difference'] was clicked" 2021-12-14 00:35:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:35:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:35:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:35:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:35:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:35:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:35:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:35:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:23 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:35:23 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:23 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:35:23 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:35:23 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:35:23 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:35:23 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:35:23 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:23 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:35:23 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:35:23 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:35:23 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:35:23 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:35:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:35:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:35:24 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:24 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:35:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:35:24 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:35:24 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:24 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:35:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:35:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:35:24 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:24 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:35:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:35:24 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:35:24 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:35:24 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:35:24 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:24 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:35:24 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:35:24 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:35:24 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:35:24 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:35:24 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:35:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:35:34 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:35:34 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:34 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:35:34 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:34 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:35:34 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:35:34 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:35:34 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:35:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:35:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:35:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:35:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:35:34 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:34 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:35:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:35:34 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:35:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:35:34 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:35:34 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:35:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:35:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:35:34 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:35:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:35:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:35:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. found." 2021-12-14 00:35:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:35:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] was clicked" 2021-12-14 00:35:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Offset']", 'Base')" 2021-12-14 00:35:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Offset'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Offset'] found." 2021-12-14 00:35:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Offset'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Offset'] found." 2021-12-14 00:35:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Offset']", 'Base')" 2021-12-14 00:35:35 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Offset']" 2021-12-14 00:35:35 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Offset'] was clicked" 2021-12-14 00:35:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:35:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:35:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:35:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:35:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:35:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:35:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:35:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:35:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:35:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:35:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:35:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:35:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:35:37 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:37 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:35:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:35:37 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:35:37 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:35:37 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:35:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:35:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:35:38 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:38 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:35:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:35:38 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:35:38 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:38 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:35:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:35:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:35:38 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:38 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:35:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:35:38 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:35:38 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:35:38 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:35:38 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:38 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:35:38 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:35:38 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:35:38 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:35:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:35:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:35:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:35:46 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:35:46 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:46 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:35:46 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:46 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:35:46 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:35:46 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:35:46 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:35:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:35:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:35:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:35:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:35:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:35:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:35:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:35:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:35:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. found." 2021-12-14 00:35:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:35:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] was clicked" 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Discharge']", 'Base')" 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Discharge'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Discharge'] found." 2021-12-14 00:35:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Discharge'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Discharge'] found." 2021-12-14 00:35:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Discharge']", 'Base')" 2021-12-14 00:35:46 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Discharge']" 2021-12-14 00:35:47 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Discharge'] was clicked" 2021-12-14 00:35:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:35:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:47 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:35:47 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:47 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:35:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:35:47 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:35:47 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:47 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:35:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:35:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:49 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:35:49 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:49 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:35:49 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:35:49 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:35:49 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:35:49 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:35:49 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:49 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:35:49 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:35:49 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:35:49 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:35:49 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:35:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:35:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:35:49 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:49 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:35:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:35:49 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:35:49 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:49 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:35:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:35:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:35:50 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:50 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:35:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:35:50 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:35:50 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:35:50 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:35:50 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:50 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:35:50 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:35:50 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:35:50 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:35:50 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:35:50 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:35:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:35:57 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:35:57 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:57 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:35:57 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:57 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:35:57 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:35:57 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:35:57 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:35:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:35:57 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:57 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:35:57 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:35:57 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:57 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:35:57 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:35:57 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:35:57 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:57 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:35:57 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:35:57 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:57 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. found." 2021-12-14 00:35:57 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:35:57 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] was clicked" 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exhaust']", 'Base')" 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exhaust'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:57 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exhaust'] found." 2021-12-14 00:35:58 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exhaust'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:58 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exhaust'] found." 2021-12-14 00:35:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exhaust']", 'Base')" 2021-12-14 00:35:58 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exhaust']" 2021-12-14 00:35:58 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exhaust'] was clicked" 2021-12-14 00:35:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:35:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:35:58 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:35:58 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:58 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:35:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:35:58 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:35:58 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:35:58 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:36:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:36:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:00 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:36:00 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:00 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:36:00 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:36:00 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:36:00 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:36:00 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:36:00 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:00 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:36:00 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:36:01 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:36:01 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:36:01 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:36:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:36:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:36:01 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:01 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:36:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:36:01 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:36:01 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:01 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:36:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:36:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:36:01 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:01 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:36:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:36:01 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:36:01 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:36:01 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:36:01 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:01 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:36:01 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:36:01 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:36:01 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:36:01 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:36:01 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:36:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:36:09 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:36:09 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:09 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:36:09 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:09 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:36:09 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:36:09 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:36:09 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:36:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:36:09 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:09 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:09 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:36:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:36:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:36:09 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:09 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:36:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:36:09 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:36:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:36:09 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:36:09 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:36:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:36:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:36:09 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:36:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:36:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:36:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. found." 2021-12-14 00:36:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:36:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] was clicked" 2021-12-14 00:36:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exterior']", 'Base')" 2021-12-14 00:36:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exterior'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exterior'] found." 2021-12-14 00:36:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exterior'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exterior'] found." 2021-12-14 00:36:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exterior']", 'Base')" 2021-12-14 00:36:10 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exterior']" 2021-12-14 00:36:10 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Exterior'] was clicked" 2021-12-14 00:36:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:36:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:10 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:36:10 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:10 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:36:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:36:10 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:36:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:10 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:36:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:36:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:13 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:36:13 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:13 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:36:13 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:36:13 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:36:13 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:36:13 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:36:13 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:13 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:36:13 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:36:13 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:36:13 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:36:13 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:36:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:36:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:36:13 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:13 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:36:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:36:13 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:36:13 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:13 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:36:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:36:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:36:13 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:13 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:36:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:36:13 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:36:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:36:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:36:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:14 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:36:14 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:36:14 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:36:14 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:36:14 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:36:14 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:36:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:36:21 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:36:21 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:21 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:36:21 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:21 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:36:21 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:36:21 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:36:21 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:21 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:36:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:21 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:36:21 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:21 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:36:21 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:36:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:36:21 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:36:21 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:36:21 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:21 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:36:21 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:36:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. found." 2021-12-14 00:36:21 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:36:21 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] was clicked" 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Other']", 'Base')" 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Other'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Other'] found." 2021-12-14 00:36:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Other'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Other'] found." 2021-12-14 00:36:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Other']", 'Base')" 2021-12-14 00:36:22 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Other']" 2021-12-14 00:36:22 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Other'] was clicked" 2021-12-14 00:36:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:36:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:22 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:36:22 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:22 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:36:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:36:22 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:36:22 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:22 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:36:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:36:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:24 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:36:24 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:24 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:36:24 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:36:24 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:36:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:36:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:36:25 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:25 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:36:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:36:25 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:36:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:36:25 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:36:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:36:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:36:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:36:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:36:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:36:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:36:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:36:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:36:25 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:25 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:36:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:36:25 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:36:25 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:36:25 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:36:25 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:36:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:36:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:36:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:36:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:36:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:36:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:36:33 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:36:33 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:33 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:36:33 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:33 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:36:33 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:36:33 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:36:33 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:36:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:36:33 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:33 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:33 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:36:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:36:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:36:33 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:33 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:36:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:36:33 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:36:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:36:33 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:36:33 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:36:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:36:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:36:33 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:33 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:36:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:36:33 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:36:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. found." 2021-12-14 00:36:34 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:36:34 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] was clicked" 2021-12-14 00:36:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Return']", 'Base')" 2021-12-14 00:36:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Return'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Return'] found." 2021-12-14 00:36:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Return'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Return'] found." 2021-12-14 00:36:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Return']", 'Base')" 2021-12-14 00:36:34 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Return']" 2021-12-14 00:36:34 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Return'] was clicked" 2021-12-14 00:36:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:36:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:36:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:36:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:36:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:36:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:36:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:36:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:36:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:36:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:36:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:36:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:36:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:36:37 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:37 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:36:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:36:37 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:36:37 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:36:37 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:36:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:36:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:36:37 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:37 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:36:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:36:37 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:36:37 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:37 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:36:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:36:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:36:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:36:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:36:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:36:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:36:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:36:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:36:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:36:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:36:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:36:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:36:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:36:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:36:44 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:36:44 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:44 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:36:45 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:45 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:36:45 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:36:45 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:36:45 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:36:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:36:45 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:45 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:36:45 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:36:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:36:45 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:36:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:36:45 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:45 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:36:45 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:36:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. found." 2021-12-14 00:36:45 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:36:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] was clicked" 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Supply']", 'Base')" 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Supply'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Supply'] found." 2021-12-14 00:36:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Supply'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Supply'] found." 2021-12-14 00:36:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Supply']", 'Base')" 2021-12-14 00:36:45 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Supply']" 2021-12-14 00:36:46 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Supply'] was clicked" 2021-12-14 00:36:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:36:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:46 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:36:46 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:46 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:36:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:36:46 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:36:46 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:46 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:36:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:36:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:48 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:36:48 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:48 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:36:48 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:36:48 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:36:48 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:36:48 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:36:48 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:48 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:36:48 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:36:48 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:36:48 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:36:48 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:36:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:36:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:36:48 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:48 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:36:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:36:48 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:36:48 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:48 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:36:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:36:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:36:48 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:48 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:36:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:36:48 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:36:48 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:36:48 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:36:48 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:48 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:36:48 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:36:48 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:36:48 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:36:49 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:36:49 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:36:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:36:55 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:36:55 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:55 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:36:55 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:55 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:36:55 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:36:55 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:36:55 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:36:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:36:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:36:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:36:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:36:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:36:55 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:55 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:36:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:36:55 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:36:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:36:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:36:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:36:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:36:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:36:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:36:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:36:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:36:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. found." 2021-12-14 00:36:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:36:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] was clicked" 2021-12-14 00:36:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Water']", 'Base')" 2021-12-14 00:36:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Water'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Water'] found." 2021-12-14 00:36:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Water'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Water'] found." 2021-12-14 00:36:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Water']", 'Base')" 2021-12-14 00:36:56 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Water']" 2021-12-14 00:36:56 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Water'] was clicked" 2021-12-14 00:36:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:36:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:36:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:36:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:36:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:36:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:36:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:36:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:58 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:36:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:58 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:36:58 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:36:58 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:36:58 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:36:58 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:36:58 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:58 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:36:58 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:36:59 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:36:59 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:36:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:36:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:36:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:36:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:36:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:36:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:36:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:36:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:36:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:36:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:36:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:36:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:36:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:36:59 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:36:59 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:36:59 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:36:59 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:36:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:36:59 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:36:59 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:36:59 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:36:59 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:37:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:37:06 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:37:06 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:06 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:37:06 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:06 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:37:06 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:37:06 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:37:06 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:37:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:37:06 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:06 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:06 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:37:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:37:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:37:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:37:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:37:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:37:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:37:07 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:37:07 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:37:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:37:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:37:07 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:07 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] found." 2021-12-14 00:37:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']", 'Expandable')" 2021-12-14 00:37:07 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:37:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/.. found." 2021-12-14 00:37:07 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']" 2021-12-14 00:37:07 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure'] was clicked" 2021-12-14 00:37:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Mixed Air']", 'Base')" 2021-12-14 00:37:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Mixed Air'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Mixed Air'] found." 2021-12-14 00:37:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Mixed Air'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Mixed Air'] found." 2021-12-14 00:37:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Mixed Air']", 'Base')" 2021-12-14 00:37:07 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Mixed Air']" 2021-12-14 00:37:07 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Measure']/../..//*[contains(@class,'depth2')]//*[text()='Mixed Air'] was clicked" 2021-12-14 00:37:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:37:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:37:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:07 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:37:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:37:07 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:37:07 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:37:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:37:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:09 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:37:09 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:09 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:37:09 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:37:09 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:37:10 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:37:10 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:37:10 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:10 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:37:10 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:37:10 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:37:10 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:37:10 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:37:10 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:37:10 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:10 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:37:10 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:10 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:37:10 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:37:10 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:37:10 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:10 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:37:10 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:37:10 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:10 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:37:10 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:10 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:37:10 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:37:10 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:37:10 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:37:10 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:37:10 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:10 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:37:10 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:37:10 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:37:10 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:37:10 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:37:10 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:37:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:37:19 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:37:19 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:19 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:37:19 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:19 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:37:19 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:37:19 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:37:19 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:37:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:37:19 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:19 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:19 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:37:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:37:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:37:19 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:19 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:37:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:37:19 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:37:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:37:19 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:37:19 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:37:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:37:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:37:19 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:19 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:37:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:37:19 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:37:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. found." 2021-12-14 00:37:19 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:37:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] was clicked" 2021-12-14 00:37:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set point']", 'Base')" 2021-12-14 00:37:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set point'] found." 2021-12-14 00:37:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set point'] found." 2021-12-14 00:37:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set point']", 'Base')" 2021-12-14 00:37:20 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set point']" 2021-12-14 00:37:20 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set point'] was clicked" 2021-12-14 00:37:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:37:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:37:20 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:37:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:37:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:37:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:37:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:37:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:22 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:37:22 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:22 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:37:22 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:37:22 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:37:22 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:37:22 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:37:23 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:23 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:37:23 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:37:23 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:37:23 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:37:23 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:37:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:37:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:37:23 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:23 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:37:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:37:23 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:37:23 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:23 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:37:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:37:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:37:23 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:23 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:37:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:37:23 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:37:23 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:37:23 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:37:23 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:23 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:37:23 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:37:23 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:37:23 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:37:24 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:37:24 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:37:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:37:30 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:37:30 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:31 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:37:31 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:31 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:37:31 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:37:31 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:37:31 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:37:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:37:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:37:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:37:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:37:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:37:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:37:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:37:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:37:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. found." 2021-12-14 00:37:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:37:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] was clicked" 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Effective Set Point']", 'Base')" 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Effective Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Effective Set Point'] found." 2021-12-14 00:37:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Effective Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Effective Set Point'] found." 2021-12-14 00:37:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Effective Set Point']", 'Base')" 2021-12-14 00:37:31 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Effective Set Point']" 2021-12-14 00:37:32 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Effective Set Point'] was clicked" 2021-12-14 00:37:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:37:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:37:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:37:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:37:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:37:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:37:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:37:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:37:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:34 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:37:34 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:37:34 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:37:34 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:37:34 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:37:34 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:34 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:37:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:37:34 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:37:34 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:37:34 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:37:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:37:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:37:34 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:34 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:37:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:37:34 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:37:34 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:34 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:37:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:37:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:37:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:37:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:37:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:37:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:37:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:37:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:37:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:37:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:37:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:37:35 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:37:35 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:37:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:37:43 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:37:43 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:43 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:37:43 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:43 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:37:43 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:37:43 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:37:43 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:37:43 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:37:43 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:43 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:43 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:43 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:43 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:37:43 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:43 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:37:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:37:43 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:44 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:37:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:37:44 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:37:44 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:44 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:37:44 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:37:44 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:37:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:37:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:44 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:37:44 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:44 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:37:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:37:44 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:37:44 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:44 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. found." 2021-12-14 00:37:44 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:37:44 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] was clicked" 2021-12-14 00:37:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Freeze protection Set point']", 'Base')" 2021-12-14 00:37:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Freeze protection Set point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:44 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Freeze protection Set point'] found." 2021-12-14 00:37:44 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Freeze protection Set point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:44 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Freeze protection Set point'] found." 2021-12-14 00:37:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Freeze protection Set point']", 'Base')" 2021-12-14 00:37:44 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Freeze protection Set point']" 2021-12-14 00:37:44 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Freeze protection Set point'] was clicked" 2021-12-14 00:37:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:37:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:37:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:37:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:37:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:37:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:37:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:37:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:47 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:37:47 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:47 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:37:47 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:37:47 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:37:47 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:37:47 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:37:47 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:47 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:37:47 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:37:47 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:37:47 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:37:47 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:37:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:37:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:37:47 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:47 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:37:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:37:47 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:37:47 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:47 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:37:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:37:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:37:47 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:37:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:37:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:37:48 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:37:48 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:37:48 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:48 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:37:48 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:37:48 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:37:48 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:37:48 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:37:48 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:37:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:37:55 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:37:55 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:55 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:37:55 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:55 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:37:55 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:37:55 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:37:55 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:37:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:37:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:37:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:37:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:37:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:37:55 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:55 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:37:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:37:55 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:37:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:37:55 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:37:55 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:37:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:37:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:37:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:37:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:37:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:37:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. found." 2021-12-14 00:37:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:37:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] was clicked" 2021-12-14 00:37:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling']", 'Base')" 2021-12-14 00:37:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling'] found." 2021-12-14 00:37:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling'] found." 2021-12-14 00:37:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling']", 'Base')" 2021-12-14 00:37:56 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling']" 2021-12-14 00:37:56 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling'] was clicked" 2021-12-14 00:37:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:37:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:37:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:37:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:37:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:37:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:37:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:37:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:59 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:37:59 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:59 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:37:59 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:37:59 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:37:59 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:37:59 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:37:59 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:59 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:37:59 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:37:59 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:37:59 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:37:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:37:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:37:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:37:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:37:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:37:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:37:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:37:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:37:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:37:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:37:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:37:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:37:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:37:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:38:00 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:38:00 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:38:00 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:00 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:38:00 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:38:00 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:38:00 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:38:00 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:38:00 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:38:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:38:07 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:38:07 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:07 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:38:07 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:07 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:38:07 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:38:07 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:38:07 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:38:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:38:07 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:07 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:07 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:07 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:07 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:38:07 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:08 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:38:08 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:08 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:38:08 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:38:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:38:08 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:38:08 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:38:08 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:08 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:38:08 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:38:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. found." 2021-12-14 00:38:08 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:38:08 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] was clicked" 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Occupied']", 'Base')" 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Occupied'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Occupied'] found." 2021-12-14 00:38:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Occupied'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Occupied'] found." 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Occupied']", 'Base')" 2021-12-14 00:38:08 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Occupied']" 2021-12-14 00:38:08 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Occupied'] was clicked" 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:38:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:09 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:38:09 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:09 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:38:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:38:09 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:38:09 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:09 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:38:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:38:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:11 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:38:11 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:11 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:38:11 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:38:11 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:38:12 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:38:12 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:38:12 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:12 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:38:12 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:38:12 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:38:12 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:38:12 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:38:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:38:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:38:12 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:12 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:38:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:38:12 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:38:12 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:12 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:38:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:38:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:38:12 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:12 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:38:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:38:12 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:38:12 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:38:12 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:38:12 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:12 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:38:12 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:38:12 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:38:12 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:38:13 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:38:13 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:38:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:38:22 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:38:22 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:22 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:38:22 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:22 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:38:22 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:38:22 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:38:22 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:38:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:38:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:38:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:38:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:38:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:38:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:38:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:38:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:38:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. found." 2021-12-14 00:38:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:38:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] was clicked" 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Standby']", 'Base')" 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Standby'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Standby'] found." 2021-12-14 00:38:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Standby'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Standby'] found." 2021-12-14 00:38:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Standby']", 'Base')" 2021-12-14 00:38:23 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Standby']" 2021-12-14 00:38:23 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Standby'] was clicked" 2021-12-14 00:38:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:38:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:38:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:38:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:38:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:38:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:38:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:38:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:38:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:38:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:38:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:38:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:38:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:38:26 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:26 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:38:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:38:26 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:38:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:38:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:38:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:38:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:38:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:38:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:38:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:38:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:38:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:38:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:38:27 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:27 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:38:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:38:27 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:38:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:38:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:38:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:38:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:38:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:38:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:38:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:38:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:38:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:38:35 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:38:35 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:35 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:38:35 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:35 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:38:35 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:38:35 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:38:35 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:38:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:38:35 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:35 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:35 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:38:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:38:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:38:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:38:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:38:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:38:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:38:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:38:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:38:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:38:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. found." 2021-12-14 00:38:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:38:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] was clicked" 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Unoccupied']", 'Base')" 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Unoccupied'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Unoccupied'] found." 2021-12-14 00:38:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Unoccupied'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Unoccupied'] found." 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Unoccupied']", 'Base')" 2021-12-14 00:38:36 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Unoccupied']" 2021-12-14 00:38:36 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Cooling Unoccupied'] was clicked" 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:38:36 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:36 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:38:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:38:36 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:38:36 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:36 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:38:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:38:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:38 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:38:38 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:38 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:38:38 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:38:38 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:38:39 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:38:39 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:38:39 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:39 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:38:39 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:38:39 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:38:39 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:38:39 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:38:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:38:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:38:39 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:39 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:38:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:38:39 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:38:39 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:39 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:38:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:38:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:38:39 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:39 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:38:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:38:39 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:38:39 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:38:39 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:38:39 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:39 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:38:39 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:38:39 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:38:39 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:38:39 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:38:39 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:38:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:38:46 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:38:46 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:46 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:38:46 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:46 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:38:46 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:38:46 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:38:47 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:47 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:38:47 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:38:47 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:47 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:38:47 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:38:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:38:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:38:47 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:38:47 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:47 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:38:47 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:38:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. found." 2021-12-14 00:38:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:38:47 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] was clicked" 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Frost Protection']", 'Base')" 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Frost Protection'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Frost Protection'] found." 2021-12-14 00:38:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Frost Protection'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Frost Protection'] found." 2021-12-14 00:38:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Frost Protection']", 'Base')" 2021-12-14 00:38:47 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Frost Protection']" 2021-12-14 00:38:48 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Frost Protection'] was clicked" 2021-12-14 00:38:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:38:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:48 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:38:48 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:48 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:38:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:38:48 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:38:48 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:48 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:38:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:38:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:51 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:38:51 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:51 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:38:51 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:38:51 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:38:51 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:38:51 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:38:51 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:51 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:38:51 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:38:51 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:38:51 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:38:51 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:38:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:38:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:38:51 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:51 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:38:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:38:51 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:38:51 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:51 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:38:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:38:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:38:51 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:51 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:38:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:38:51 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:38:51 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:38:51 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:38:51 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:51 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:38:51 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:38:51 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:38:51 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:38:52 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:38:52 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:38:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:38:59 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:38:59 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:59 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:38:59 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:59 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:38:59 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:38:59 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:38:59 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:38:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:38:59 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:59 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:59 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:59 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:38:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:59 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:38:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:38:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:38:59 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:59 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:38:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:38:59 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:38:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:38:59 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:38:59 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:38:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:38:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:38:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:38:59 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:38:59 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:38:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:38:59 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:38:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. found." 2021-12-14 00:39:00 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:39:00 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] was clicked" 2021-12-14 00:39:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating']", 'Base')" 2021-12-14 00:39:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating'] found." 2021-12-14 00:39:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating'] found." 2021-12-14 00:39:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating']", 'Base')" 2021-12-14 00:39:00 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating']" 2021-12-14 00:39:00 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating'] was clicked" 2021-12-14 00:39:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:39:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:39:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:39:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:39:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:39:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:39:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:39:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:02 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:39:02 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:02 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:39:02 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:39:02 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:39:02 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:39:02 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:39:02 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:02 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:39:02 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:39:03 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:39:03 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:39:03 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:39:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:39:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:39:03 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:03 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:39:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:39:03 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:39:03 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:03 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:39:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:39:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:39:03 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:03 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:39:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:39:03 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:39:03 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:39:03 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:39:03 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:03 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:39:03 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:39:03 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:39:03 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:39:03 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:39:03 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:39:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:39:10 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:39:10 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:10 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:39:10 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:10 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:39:10 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:39:10 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:39:11 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:39:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:39:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:39:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:39:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:39:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:39:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:39:11 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:39:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:39:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:39:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. found." 2021-12-14 00:39:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:39:11 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] was clicked" 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Occupied']", 'Base')" 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Occupied'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Occupied'] found." 2021-12-14 00:39:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Occupied'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Occupied'] found." 2021-12-14 00:39:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Occupied']", 'Base')" 2021-12-14 00:39:11 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Occupied']" 2021-12-14 00:39:12 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Occupied'] was clicked" 2021-12-14 00:39:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:39:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:39:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:39:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:39:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:39:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:39:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:39:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:39:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:39:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:39:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:39:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:39:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:39:14 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:14 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:39:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:39:14 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:39:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:39:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:39:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:39:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:39:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:39:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:39:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:39:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:14 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:39:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:39:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:39:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:14 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:39:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:39:14 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:39:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:39:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:39:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:15 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:39:15 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:39:15 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:39:15 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:39:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:39:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:39:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:39:22 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:39:22 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:22 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:39:22 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:22 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:39:22 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:39:22 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:39:22 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:39:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:39:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:39:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:39:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:39:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:39:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:39:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:39:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:39:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:39:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. found." 2021-12-14 00:39:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:39:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] was clicked" 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Standby']", 'Base')" 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Standby'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Standby'] found." 2021-12-14 00:39:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Standby'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Standby'] found." 2021-12-14 00:39:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Standby']", 'Base')" 2021-12-14 00:39:23 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Standby']" 2021-12-14 00:39:23 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Standby'] was clicked" 2021-12-14 00:39:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:39:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:39:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:39:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:39:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:39:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:39:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:39:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:39:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:39:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:39:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:39:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:39:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:39:26 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:26 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:39:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:39:26 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:39:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:39:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:39:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:39:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:39:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:39:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:39:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:39:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:39:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:39:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:39:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:39:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:39:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:39:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:39:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:39:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:39:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:39:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:39:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:39:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:39:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:39:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:39:34 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:39:34 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:34 - AssetTemplatesPage - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:39:34 - Button - INFO - Waiting for element //*[text()='Add datapoint']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:34 - Button - INFO - Element //*[text()='Add datapoint']//ancestor::button found." 2021-12-14 00:39:34 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add datapoint']//ancestor::button", 'Button')" 2021-12-14 00:39:34 - Button - INFO - Trying to click element with xpath //*[text()='Add datapoint']//ancestor::button" 2021-12-14 00:39:34 - Button - INFO - Element with xpath //*[text()='Add datapoint']//ancestor::button was clicked" 2021-12-14 00:39:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:39:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:39:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:39:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:39:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:39:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:39:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:39:34 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:34 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature'] found." 2021-12-14 00:39:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']", 'Expandable')" 2021-12-14 00:39:34 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:39:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/.. found." 2021-12-14 00:39:34 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']" 2021-12-14 00:39:34 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature'] was clicked" 2021-12-14 00:39:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:39:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:39:34 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:34 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] found." 2021-12-14 00:39:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']", 'Expandable')" 2021-12-14 00:39:34 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:39:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/.. found." 2021-12-14 00:39:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']" 2021-12-14 00:39:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point'] was clicked" 2021-12-14 00:39:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Unoccupied']", 'Base')" 2021-12-14 00:39:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Unoccupied'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Unoccupied'] found." 2021-12-14 00:39:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Unoccupied'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Unoccupied'] found." 2021-12-14 00:39:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Unoccupied']", 'Base')" 2021-12-14 00:39:35 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Unoccupied']" 2021-12-14 00:39:35 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Temperature']/../..//*[text()='Set Point']/../..//*[contains(@class,'depth2')]//*[text()='Set Point - Heating Unoccupied'] was clicked" 2021-12-14 00:39:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:39:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:39:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:39:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:39:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:39:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:39:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:39:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:39:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:39:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:39:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:39:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:39:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:39:37 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:37 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:39:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:39:38 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:39:38 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:39:38 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:39:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:39:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:39:38 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:38 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:39:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:39:38 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:39:38 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:38 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:39:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:39:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:39:38 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:38 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:39:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:39:38 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:39:38 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:39:38 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:39:38 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:38 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:39:38 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:39:38 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:39:38 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:39:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:39:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:39:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." -----------------------------Captured log teardown------------------------------ 2021-12-14 00:39:46 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_dodanie_wszystkich_datapointow.png" | |||
| Failed | tests/Asset_Template_tests/Functional_tests/test_datapoints_and_properties.py::test_edycja_wszystkich_datapointow | 2194.87 | |
|
asset_templates_page = <frontend.objects.Pages.asset_templates_page.AssetTemplatesPage object at 0x000002744B897DF0> @pytest.mark.order(19) def test_edycja_wszystkich_datapointow(asset_templates_page): """ Test edytujący wszystkie dostępne datapointy WARUNKI WSTĘPNE: - Jestem na stronie Asset templates - Jestem w trybie edycji Asset template'u" OPIS KROKU: 1. Przejdź do zakładki 'Points' 2. Kliknij edycję każdego datapointu, zmień nazwę, typ, dodaj tag i zapisz OCZEKIWANY REZULTAT: 1. Lista datapointów jest wyświetlona 2. Każdy datapoint został poprawnie poddany edycji i zapisany """ # Preconditions assert asset_templates_page.url == asset_templates_page.driver.current_url template_table = asset_templates_page.template_table(table_name='Central').get_table( unique_column_name='TEMPLATE NAME') assert template_table[TEMPLATE_FUNCTIONAL_TESTS]['TEMPLATE NAME'] == TEMPLATE_FUNCTIONAL_TESTS asset_templates_page.template_table('Central').edit_row(unique_column_name='TEMPLATE NAME', row_name=TEMPLATE_FUNCTIONAL_TESTS) # step 1 asset_templates_page.open_tab('Points') points_table = asset_templates_page.points_properties_table.get_table(unique_column_name='POINT') # step 2 datapoint_names = [] failing_datapoints = [] for point_id in range(1, len(points_table)): asset_templates_page.points_properties_table.edit_row(row_id=point_id) edit_point_modal = AddDatapointPropertyModal(asset_templates_page.driver) datapoint_name = edit_point_modal.get_name() datapoint_name = datapoint_name[0:24] + create_random_string(2) + '_edit' datapoint_names.append(datapoint_name) edit_point_modal.set_name(datapoint_name) edit_point_modal.set_type(edit_point_modal.datapoint_types[random.randint(0, 3)]) edit_point_modal.tags.set_new_tag('edit') try: edit_point_modal.save() except: failing_datapoints.append(edit_point_modal.get_name()) edit_point_modal.cancel() if len(failing_datapoints) != 0: raise ValueError(f'Not working datapoints: \n {failing_datapoints}') points_table = asset_templates_page.points_properties_table.get_table(unique_column_name='POINT') for datapoint_name in datapoint_names: > assert datapoint_name in points_table.keys() E AssertionError: assert 'Date & Time-Time-Time - V6_edit' in dict_keys(['Alarm-Default NCKQEL_edit', 'Alarm-Default NO3LS5_edit', 'Alarm-FaultKT4O_edit', 'Alarm-Fire6I5R_edit', 'A...SeMV_edit', 'Temperature-Set Point-Set PoinDB', 'Temperature-Set Point-Set PoinQ2', 'Temperature-Set Point-SeXK_edit']) E + where dict_keys(['Alarm-Default NCKQEL_edit', 'Alarm-Default NO3LS5_edit', 'Alarm-FaultKT4O_edit', 'Alarm-Fire6I5R_edit', 'A...SeMV_edit', 'Temperature-Set Point-Set PoinDB', 'Temperature-Set Point-Set PoinQ2', 'Temperature-Set Point-SeXK_edit']) = <built-in method keys of dict object at 0x000002744C9BAE40>() E + where <built-in method keys of dict object at 0x000002744C9BAE40> = {'Alarm-Default NCKQEL_edit': {'ACTION': '', 'DIRECTION': 'Command And Feedback', 'POINT': 'Alarm-Default NCKQEL_edit'...tKT4O_edit'}, 'Alarm-Fire6I5R_edit': {'ACTION': '', 'DIRECTION': 'Configuration', 'POINT': 'Alarm-Fire6I5R_edit'}, ...}.keys tests\Asset_Template_tests\Functional_tests\test_datapoints_and_properties.py:136: AssertionError -------------------------------Captured log setup------------------------------- 2021-12-14 00:39:52 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:39:52 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:52 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:39:52 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:52 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:39:52 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:39:52 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:39:52 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:39:52 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:39:52 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:52 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:39:52 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:52 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:39:52 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:39:52 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:39:52 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:52 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:39:52 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:39:52 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:52 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:39:52 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:52 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:39:52 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:39:52 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:39:52 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:52 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:39:52 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:39:52 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:52 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:39:52 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:52 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:39:52 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:39:52 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:39:52 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:39:52 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:39:52 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:53 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:39:53 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:54 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:39:54 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:39:54 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:54 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:39:54 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_myfunctions"]', 'Base')" 2021-12-14 00:39:54 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_myfunctions"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:54 - MenuPage - INFO - Element //*[@id="widget-carousel_myfunctions"] found." 2021-12-14 00:39:54 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_myfunctions"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:54 - BaseElement - INFO - Element //*[@id="widget-carousel_myfunctions"] found." 2021-12-14 00:39:54 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_myfunctions"]', 'Base')" 2021-12-14 00:39:54 - BaseElement - INFO - Trying to click element with xpath //*[@id="widget-carousel_myfunctions"]" 2021-12-14 00:39:54 - BaseElement - INFO - Element with xpath //*[@id="widget-carousel_myfunctions"] was clicked" 2021-12-14 00:39:54 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Central']/ancestor::span//button", 'Button')" 2021-12-14 00:39:54 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:57 - AssetTemplatesPage - INFO - Element //*[text()='Central']/ancestor::span//button found." 2021-12-14 00:39:57 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:57 - Button - INFO - Element //*[text()='Central']/ancestor::span//button found." 2021-12-14 00:39:57 - AssetTemplatesPage - INFO - Found element ("//*[text()='Central']/ancestor::span//button", 'Button')" 2021-12-14 00:39:57 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:57 - Button - INFO - Element //*[text()='Central']/ancestor::span//button found." -------------------------------Captured log call-------------------------------- 2021-12-14 00:39:57 - AssetTemplatesPage - INFO - Trying to format the element ("//*[text()='{}']/ancestor::span//table", 'Table') with data ('Central',)" 2021-12-14 00:39:57 - AssetTemplatesPage - INFO - Trying to find component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 00:39:57 - AssetTemplatesPage - INFO - Found component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 00:39:57 - AssetTemplatesPage - INFO - Trying to format the element ("//*[text()='{}']/ancestor::span//table", 'Table') with data ('Central',)" 2021-12-14 00:39:57 - AssetTemplatesPage - INFO - Trying to find component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 00:39:57 - AssetTemplatesPage - INFO - Found component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 00:39:57 - Table - INFO - Trying to find element ('//*[text()=\'Central\']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:39:57 - Table - INFO - Waiting for element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:57 - Table - INFO - Element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] found." 2021-12-14 00:39:57 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:57 - Button - INFO - Element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] found." 2021-12-14 00:39:57 - Table - INFO - Found element ('//*[text()=\'Central\']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:39:57 - Button - INFO - Trying to click element with xpath //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")]" 2021-12-14 00:39:57 - Button - INFO - Element with xpath //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:39:57 - AssetTemplatesPage - INFO - Trying to find element ("//a[text()='Points']//ancestor::li", 'Base')" 2021-12-14 00:39:57 - AssetTemplatesPage - INFO - Waiting for element //a[text()='Points']//ancestor::li with poll frequency 0.1s and timeout 15s" 2021-12-14 00:39:57 - AssetTemplatesPage - INFO - Element //a[text()='Points']//ancestor::li found." 2021-12-14 00:39:57 - BaseElement - INFO - Waiting for element //a[text()='Points']//ancestor::li with poll frequency 0.1s and timeout 5s" 2021-12-14 00:39:57 - BaseElement - INFO - Element //a[text()='Points']//ancestor::li found." 2021-12-14 00:39:57 - AssetTemplatesPage - INFO - Found element ("//a[text()='Points']//ancestor::li", 'Base')" 2021-12-14 00:39:57 - BaseElement - INFO - Trying to click element with xpath //a[text()='Points']//ancestor::li" 2021-12-14 00:39:58 - BaseElement - INFO - Element with xpath //a[text()='Points']//ancestor::li was clicked" 2021-12-14 00:39:58 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:39:58 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:40:10 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:40:10 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:40:10 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[1]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:40:10 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[1]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:10 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[1]/td//i[contains(@class,"edit")] found." 2021-12-14 00:40:10 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[1]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:10 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[1]/td//i[contains(@class,"edit")] found." 2021-12-14 00:40:10 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[1]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:40:10 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[1]/td//i[contains(@class,"edit")]" 2021-12-14 00:40:11 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[1]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:40:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:40:11 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:11 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:11 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:40:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:40:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:40:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:40:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:40:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:40:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:13 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:40:13 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:13 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:40:13 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:40:13 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:40:13 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:40:13 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:40:13 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:13 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:40:13 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:40:13 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:40:13 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:40:13 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:40:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:40:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:40:13 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:13 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:40:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:40:13 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:40:13 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:13 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:40:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:40:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:40:13 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:13 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:40:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:40:13 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:40:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:40:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:40:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:14 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:40:14 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:40:14 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:40:14 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:40:14 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:40:14 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:40:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:40:21 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:40:21 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:40:21 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[2]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:40:21 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[2]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:21 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[2]/td//i[contains(@class,"edit")] found." 2021-12-14 00:40:21 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[2]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:21 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[2]/td//i[contains(@class,"edit")] found." 2021-12-14 00:40:21 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[2]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:40:21 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[2]/td//i[contains(@class,"edit")]" 2021-12-14 00:40:21 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[2]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:40:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:40:21 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:21 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:40:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:22 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:22 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:22 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:22 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:40:22 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:22 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:40:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:22 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:22 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:22 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:22 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:40:22 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:22 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:40:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:40:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:23 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:40:23 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:23 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:40:23 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:40:23 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:40:24 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:40:24 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:40:24 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:24 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:40:24 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:40:24 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:40:24 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:40:24 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:40:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:40:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:40:24 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:24 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:40:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:40:24 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:40:24 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:24 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:40:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:40:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:40:24 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:24 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:40:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:40:24 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:40:24 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:40:24 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:40:24 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:24 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:40:24 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:40:24 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:40:24 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:40:24 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:40:24 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:40:32 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:40:32 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:40:32 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:40:32 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[3]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:40:32 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[3]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:32 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[3]/td//i[contains(@class,"edit")] found." 2021-12-14 00:40:32 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[3]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:32 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[3]/td//i[contains(@class,"edit")] found." 2021-12-14 00:40:32 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[3]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:40:32 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[3]/td//i[contains(@class,"edit")]" 2021-12-14 00:40:32 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[3]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:40:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:40:32 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:32 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:32 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:40:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:40:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:40:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:40:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:40:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:40:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:40:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:34 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:40:34 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:40:34 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:40:34 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:40:34 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:40:34 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:34 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:40:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:40:34 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:40:34 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:40:34 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:40:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:40:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:40:34 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:34 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:40:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:40:34 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:40:34 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:34 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:40:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:40:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:40:34 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:34 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:40:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:40:34 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:40:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:40:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:40:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:40:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:40:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:40:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:40:35 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:40:35 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:40:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:40:42 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:40:42 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:40:42 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[4]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:40:42 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[4]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:42 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[4]/td//i[contains(@class,"edit")] found." 2021-12-14 00:40:42 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[4]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:42 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[4]/td//i[contains(@class,"edit")] found." 2021-12-14 00:40:42 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[4]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:40:42 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[4]/td//i[contains(@class,"edit")]" 2021-12-14 00:40:42 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[4]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:40:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:40:42 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:40:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:42 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:42 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:42 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:42 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:40:42 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:42 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:40:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:42 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:42 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:42 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:42 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:40:42 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:42 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:40:43 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:40:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:43 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:40:43 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:44 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:40:44 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:40:44 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:40:44 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:40:44 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:40:44 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:44 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:40:44 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:40:44 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:40:44 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:40:44 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:40:44 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:40:44 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:44 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:40:44 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:44 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:40:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:40:44 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:40:44 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:44 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:40:44 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:40:44 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:44 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:40:44 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:44 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:40:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:40:44 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:40:44 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:40:44 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:40:44 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:44 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:40:44 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:40:44 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:40:44 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:40:44 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:40:44 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:40:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:40:52 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:40:52 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:40:52 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[5]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:40:52 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[5]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:52 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[5]/td//i[contains(@class,"edit")] found." 2021-12-14 00:40:52 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[5]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:52 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[5]/td//i[contains(@class,"edit")] found." 2021-12-14 00:40:52 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[5]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:40:52 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[5]/td//i[contains(@class,"edit")]" 2021-12-14 00:40:52 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[5]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:40:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:40:52 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:52 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:52 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:40:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:40:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:52 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:52 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:52 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:52 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:40:52 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:52 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:40:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:52 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:52 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:52 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:40:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:40:52 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:40:52 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:52 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:40:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:40:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:54 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:40:54 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:54 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:40:54 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:40:54 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:40:54 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:40:54 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:40:54 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:54 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:40:54 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:40:54 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:40:54 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:40:54 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:40:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:40:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:40:54 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:54 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:40:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:40:54 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:40:54 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:54 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:40:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:40:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:40:54 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:54 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:40:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:40:54 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:40:54 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:40:54 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:40:54 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:40:54 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:40:54 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:40:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:40:54 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:40:54 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:40:55 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:40:55 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:41:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:41:01 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:41:01 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:41:01 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[6]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:41:01 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[6]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:01 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[6]/td//i[contains(@class,"edit")] found." 2021-12-14 00:41:01 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[6]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:01 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[6]/td//i[contains(@class,"edit")] found." 2021-12-14 00:41:01 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[6]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:41:01 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[6]/td//i[contains(@class,"edit")]" 2021-12-14 00:41:02 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[6]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:41:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:41:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:41:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:41:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:41:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:41:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:41:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:41:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:04 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:41:04 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:04 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:41:04 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:41:04 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:41:04 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:41:04 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:41:04 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:04 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:41:04 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:41:04 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:41:04 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:41:04 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:41:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:41:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:41:04 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:04 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:41:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:41:04 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:41:04 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:04 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:41:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:41:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:41:04 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:04 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:41:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:41:04 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:41:04 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:41:04 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:41:04 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:04 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:41:04 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:41:05 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:41:05 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:41:05 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:41:05 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:41:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:41:12 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:41:12 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:41:12 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[7]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:41:12 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[7]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:12 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[7]/td//i[contains(@class,"edit")] found." 2021-12-14 00:41:12 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[7]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:12 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[7]/td//i[contains(@class,"edit")] found." 2021-12-14 00:41:12 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[7]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:41:12 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[7]/td//i[contains(@class,"edit")]" 2021-12-14 00:41:13 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[7]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:41:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:41:13 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:13 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:13 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:41:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:41:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:41:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:41:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:41:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:41:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:15 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:41:15 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:15 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:41:15 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:41:15 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:41:15 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:41:15 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:41:15 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:15 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:41:15 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:41:15 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:41:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:41:15 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:41:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:41:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:41:15 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:16 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:41:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:41:16 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:41:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:41:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:41:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:41:16 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:16 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:41:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:41:16 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:41:16 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:41:16 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:41:16 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:16 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:41:16 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:41:16 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:41:16 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:41:16 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:41:16 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:41:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:41:23 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:41:23 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:41:23 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[8]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:41:23 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[8]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:23 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[8]/td//i[contains(@class,"edit")] found." 2021-12-14 00:41:23 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[8]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:23 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[8]/td//i[contains(@class,"edit")] found." 2021-12-14 00:41:23 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[8]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:41:23 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[8]/td//i[contains(@class,"edit")]" 2021-12-14 00:41:23 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[8]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:41:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:41:23 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:41:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:41:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:41:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:41:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:41:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:41:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:41:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:41:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:41:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:41:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:41:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:41:25 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:25 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:41:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:41:25 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:41:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:41:25 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:41:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:41:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:41:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:41:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:41:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:41:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:41:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:41:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:41:25 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:25 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:41:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:41:25 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:41:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:41:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:41:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:41:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:41:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:41:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:41:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:41:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:41:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:41:33 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:41:33 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:41:33 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[9]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:41:33 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[9]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:33 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[9]/td//i[contains(@class,"edit")] found." 2021-12-14 00:41:33 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[9]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:33 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[9]/td//i[contains(@class,"edit")] found." 2021-12-14 00:41:33 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[9]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:41:33 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[9]/td//i[contains(@class,"edit")]" 2021-12-14 00:41:33 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[9]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:41:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:41:33 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:33 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:33 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:41:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:41:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:33 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:41:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:41:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:33 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:41:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:41:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:35 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:41:35 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:35 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:41:35 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:41:35 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:41:36 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:41:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:41:36 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:36 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:41:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:41:36 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:41:36 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:41:36 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:41:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:41:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:41:36 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:36 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:41:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:41:36 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:41:36 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:36 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:41:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:41:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:41:36 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:36 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:41:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:41:36 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:41:36 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:41:36 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:41:36 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:36 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:41:36 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:41:36 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:41:36 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:41:36 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:41:36 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:41:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:41:43 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:41:43 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:41:43 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[10]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:41:43 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[10]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:44 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[10]/td//i[contains(@class,"edit")] found." 2021-12-14 00:41:44 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[10]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:44 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[10]/td//i[contains(@class,"edit")] found." 2021-12-14 00:41:44 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[10]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:41:44 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[10]/td//i[contains(@class,"edit")]" 2021-12-14 00:41:44 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[10]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:41:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:41:44 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:44 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:44 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:41:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:41:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:41:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:41:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:41:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:41:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:41:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:41:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:41:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:41:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:41:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:41:46 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:46 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:41:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:41:47 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:41:47 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:41:47 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:41:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:41:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:41:47 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:47 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:41:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:41:47 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:41:47 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:47 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:41:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:41:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:41:47 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:41:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:41:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:41:47 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:41:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:41:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:41:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:41:47 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:41:47 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:41:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:41:47 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:41:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:41:54 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:41:54 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:41:54 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[11]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:41:54 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[11]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:54 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[11]/td//i[contains(@class,"edit")] found." 2021-12-14 00:41:54 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[11]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:54 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[11]/td//i[contains(@class,"edit")] found." 2021-12-14 00:41:54 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[11]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:41:54 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[11]/td//i[contains(@class,"edit")]" 2021-12-14 00:41:54 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[11]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:41:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:41:54 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:54 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:54 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:41:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:41:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:41:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:41:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:41:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:41:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:41:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:41:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:41:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:57 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:41:57 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:57 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:41:57 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:41:57 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:41:57 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:41:57 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:41:57 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:57 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:41:57 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:41:57 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:41:57 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:41:57 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:41:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:41:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:41:57 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:57 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:41:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:41:57 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:41:57 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:57 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:41:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:41:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:41:57 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:57 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:41:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:41:57 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:41:58 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:41:58 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:41:58 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:41:58 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:41:58 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:41:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:41:58 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:41:58 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:41:58 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:41:58 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:42:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:42:05 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:42:05 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:42:05 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[12]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:42:05 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[12]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:05 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[12]/td//i[contains(@class,"edit")] found." 2021-12-14 00:42:05 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[12]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:05 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[12]/td//i[contains(@class,"edit")] found." 2021-12-14 00:42:05 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[12]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:42:05 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[12]/td//i[contains(@class,"edit")]" 2021-12-14 00:42:05 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[12]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:42:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:42:05 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:06 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:06 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:42:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:42:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:42:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:42:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:42:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:42:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:42:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:42:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:42:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:42:08 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:42:08 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:42:08 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:08 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:42:08 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:42:08 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:42:08 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:42:08 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:42:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:42:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:42:08 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:08 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:42:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:42:08 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:42:08 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:08 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:42:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:42:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:42:08 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:08 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:42:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:42:08 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:42:08 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:42:08 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:42:08 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:08 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:42:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:42:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:42:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:42:09 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:42:09 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:42:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:42:17 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:42:17 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:42:17 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[13]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:42:17 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[13]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:17 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[13]/td//i[contains(@class,"edit")] found." 2021-12-14 00:42:17 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[13]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:17 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[13]/td//i[contains(@class,"edit")] found." 2021-12-14 00:42:17 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[13]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:42:17 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[13]/td//i[contains(@class,"edit")]" 2021-12-14 00:42:17 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[13]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:42:17 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:42:17 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:17 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:17 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:42:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:17 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:42:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:42:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:17 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:42:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:42:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:42:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:19 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:42:19 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:19 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:42:19 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:42:19 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:42:20 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:42:20 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:42:20 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:20 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:42:20 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:42:20 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:42:20 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:42:20 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:42:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:42:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:42:20 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:20 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:42:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:42:20 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:42:20 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:20 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:42:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:42:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:42:20 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:20 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:42:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:42:20 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:42:20 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:42:20 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:42:20 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:20 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:42:20 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:42:20 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:42:20 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:42:20 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:42:20 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:42:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:42:27 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:42:27 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:42:27 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[14]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:42:27 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[14]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:27 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[14]/td//i[contains(@class,"edit")] found." 2021-12-14 00:42:27 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[14]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:28 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[14]/td//i[contains(@class,"edit")] found." 2021-12-14 00:42:28 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[14]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:42:28 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[14]/td//i[contains(@class,"edit")]" 2021-12-14 00:42:28 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[14]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:42:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:42:28 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:28 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:28 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:42:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:42:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:42:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:42:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:42:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:42:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:30 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:42:30 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:30 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:42:30 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:42:30 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:42:30 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:42:30 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:42:30 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:30 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:42:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:42:30 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:42:30 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:42:30 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:42:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:42:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:42:31 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:31 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:42:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:42:31 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:42:31 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:31 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:42:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:42:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:42:31 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:31 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:42:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:42:31 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:42:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:42:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:42:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:42:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:42:31 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:42:31 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:42:31 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:42:31 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:42:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:42:38 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:42:38 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:42:38 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[15]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:42:38 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[15]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:38 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[15]/td//i[contains(@class,"edit")] found." 2021-12-14 00:42:38 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[15]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:38 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[15]/td//i[contains(@class,"edit")] found." 2021-12-14 00:42:38 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[15]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:42:38 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[15]/td//i[contains(@class,"edit")]" 2021-12-14 00:42:38 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[15]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:42:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:42:38 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:39 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:39 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:42:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:39 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:39 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:39 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:39 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:42:39 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:39 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:42:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:39 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:39 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:39 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:39 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:42:39 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:39 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:42:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:42:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:41 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:42:41 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:41 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:42:41 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:42:41 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:42:41 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:42:41 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:42:41 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:41 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:42:41 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:42:41 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:42:41 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:42:41 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:42:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:42:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:42:41 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:41 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:42:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:42:41 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:42:41 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:41 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:42:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:42:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:42:41 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:41 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:42:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:42:41 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:42:41 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:42:41 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:42:41 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:41 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:42:41 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:42:41 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:42:41 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:42:42 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:42:42 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:42:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:42:48 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:42:48 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:42:48 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[16]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:42:48 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[16]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:49 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[16]/td//i[contains(@class,"edit")] found." 2021-12-14 00:42:49 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[16]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:49 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[16]/td//i[contains(@class,"edit")] found." 2021-12-14 00:42:49 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[16]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:42:49 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[16]/td//i[contains(@class,"edit")]" 2021-12-14 00:42:49 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[16]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:42:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:42:49 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:42:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:42:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:49 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:49 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:42:49 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:49 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:42:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:49 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:49 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:42:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:42:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:42:49 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:49 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:42:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:42:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:51 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:42:51 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:42:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:42:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:42:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:42:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:42:52 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:52 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:42:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:42:52 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:42:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:42:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:42:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:42:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:42:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:42:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:42:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:42:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:52 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:42:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:42:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:42:52 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:52 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:42:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:42:52 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:42:52 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:42:52 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:42:52 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:42:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:42:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:42:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:42:52 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:42:52 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:42:52 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:42:52 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:43:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:43:00 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:43:00 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:43:00 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[17]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:43:00 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[17]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:00 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[17]/td//i[contains(@class,"edit")] found." 2021-12-14 00:43:00 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[17]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:00 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[17]/td//i[contains(@class,"edit")] found." 2021-12-14 00:43:00 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[17]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:43:00 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[17]/td//i[contains(@class,"edit")]" 2021-12-14 00:43:00 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[17]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:43:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:43:00 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:00 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:00 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:43:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:43:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:43:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:01 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:01 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:43:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:43:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:43:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:02 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:43:02 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:02 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:43:02 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:43:02 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:43:03 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:43:03 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:43:03 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:03 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:43:03 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:43:03 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:43:03 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:43:03 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:43:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:43:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:43:03 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:03 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:43:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:43:03 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:43:03 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:03 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:43:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:43:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:43:03 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:03 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:43:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:43:03 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:43:03 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:43:03 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:43:03 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:03 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:43:03 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:43:03 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:43:03 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:43:03 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:43:03 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:43:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:43:10 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:43:10 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:43:10 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[18]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:43:10 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[18]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:10 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[18]/td//i[contains(@class,"edit")] found." 2021-12-14 00:43:10 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[18]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:10 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[18]/td//i[contains(@class,"edit")] found." 2021-12-14 00:43:10 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[18]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:43:10 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[18]/td//i[contains(@class,"edit")]" 2021-12-14 00:43:11 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[18]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:43:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:43:11 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:11 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:11 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:43:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:43:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:43:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:43:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:43:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:43:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:13 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:43:13 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:13 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:43:13 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:43:13 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:43:13 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:43:13 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:43:13 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:13 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:43:13 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:43:13 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:43:13 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:43:13 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:43:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:43:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:43:13 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:13 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:43:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:43:13 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:43:13 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:13 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:43:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:43:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:43:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:14 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:43:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:43:14 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:43:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:43:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:43:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:14 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:43:14 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:43:14 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:43:14 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:43:14 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:43:14 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:43:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:43:21 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:43:21 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:43:21 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[19]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:43:21 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[19]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:21 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[19]/td//i[contains(@class,"edit")] found." 2021-12-14 00:43:21 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[19]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:21 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[19]/td//i[contains(@class,"edit")] found." 2021-12-14 00:43:21 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[19]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:43:21 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[19]/td//i[contains(@class,"edit")]" 2021-12-14 00:43:21 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[19]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:43:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:43:21 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:21 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:21 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:21 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:43:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:21 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:43:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:43:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:43:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:43:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:43:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:23 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:43:23 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:23 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:43:23 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:43:23 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:43:23 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:43:23 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:43:23 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:23 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:43:23 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:43:24 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:43:24 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:43:24 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:43:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:43:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:43:24 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:24 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:43:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:43:24 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:43:24 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:24 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:43:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:43:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:43:24 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:24 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:43:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:43:24 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:43:24 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:43:24 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:43:24 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:24 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:43:24 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:43:24 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:43:24 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:43:24 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:43:24 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:43:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:43:31 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:43:31 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:43:31 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[20]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:43:31 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[20]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:31 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[20]/td//i[contains(@class,"edit")] found." 2021-12-14 00:43:31 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[20]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:31 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[20]/td//i[contains(@class,"edit")] found." 2021-12-14 00:43:31 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[20]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:43:31 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[20]/td//i[contains(@class,"edit")]" 2021-12-14 00:43:31 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[20]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:43:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:43:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:32 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:43:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:43:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:43:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:43:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:43:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:43:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:43:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:34 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:43:34 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:43:34 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:43:34 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:43:34 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:43:34 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:34 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:43:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:43:34 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:43:34 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:43:34 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:43:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:43:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:43:34 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:34 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:43:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:43:34 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:43:34 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:34 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:43:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:43:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:43:34 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:34 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:43:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:43:34 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:43:34 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:43:34 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:43:34 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:34 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:43:34 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:43:34 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:43:34 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:43:35 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:43:35 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:43:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:43:42 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:43:42 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:43:42 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[21]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:43:42 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[21]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:42 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[21]/td//i[contains(@class,"edit")] found." 2021-12-14 00:43:42 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[21]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:42 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[21]/td//i[contains(@class,"edit")] found." 2021-12-14 00:43:42 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[21]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:43:42 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[21]/td//i[contains(@class,"edit")]" 2021-12-14 00:43:42 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[21]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:43:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:43:42 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:43:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:43 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:43 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:43 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:43 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:43 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:43:43 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:43 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:43:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:43 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:43 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:43 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:43 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:43:43 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:43 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:43:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:43:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:43:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:43:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:43:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:43:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:43:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:43:46 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:46 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:43:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:43:46 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:43:46 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:43:46 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:43:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:43:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:43:46 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:46 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:43:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:43:46 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:43:46 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:46 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:43:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:43:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:43:47 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:43:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:43:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:43:47 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:43:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:43:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:43:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:43:47 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:43:47 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:43:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:43:47 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:43:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:43:55 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:43:55 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:43:55 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[22]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:43:55 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[22]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:55 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[22]/td//i[contains(@class,"edit")] found." 2021-12-14 00:43:55 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[22]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:55 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[22]/td//i[contains(@class,"edit")] found." 2021-12-14 00:43:55 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[22]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:43:55 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[22]/td//i[contains(@class,"edit")]" 2021-12-14 00:43:55 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[22]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:43:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:43:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:43:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:43:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:43:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:43:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:43:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:43:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:43:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:43:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:43:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:58 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:43:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:58 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:43:58 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:43:58 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:43:59 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:43:59 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:43:59 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:59 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:43:59 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:43:59 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:43:59 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:43:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:43:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:43:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:43:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:43:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:43:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:43:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:43:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:43:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:43:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:43:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:43:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:43:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:43:59 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:43:59 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:43:59 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:43:59 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:43:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:43:59 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:43:59 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:44:00 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:44:00 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:44:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:44:07 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:44:07 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:44:07 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[23]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:44:07 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[23]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:07 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[23]/td//i[contains(@class,"edit")] found." 2021-12-14 00:44:07 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[23]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:07 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[23]/td//i[contains(@class,"edit")] found." 2021-12-14 00:44:07 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[23]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:44:07 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[23]/td//i[contains(@class,"edit")]" 2021-12-14 00:44:07 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[23]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:44:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:44:07 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:07 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:07 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:07 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:07 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:44:07 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:07 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:07 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:07 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:44:07 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:44:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:07 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:07 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:44:07 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:44:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:44:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:09 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:44:09 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:09 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:44:09 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:44:09 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:44:09 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:44:09 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:44:09 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:10 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:44:10 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:44:10 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:44:10 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:44:10 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:44:10 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:44:10 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:10 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:44:10 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:10 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:44:10 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:44:10 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:44:10 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:10 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:44:10 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:44:10 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:10 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:44:10 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:10 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:44:10 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:44:10 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:44:10 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:44:10 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:44:10 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:10 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:44:10 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:44:10 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:44:10 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:44:10 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:44:10 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:44:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:44:17 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:44:17 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:44:17 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[24]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:44:17 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[24]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:17 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[24]/td//i[contains(@class,"edit")] found." 2021-12-14 00:44:17 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[24]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:18 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[24]/td//i[contains(@class,"edit")] found." 2021-12-14 00:44:18 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[24]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:44:18 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[24]/td//i[contains(@class,"edit")]" 2021-12-14 00:44:18 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[24]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:44:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:44:18 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:18 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:18 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:18 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:18 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:44:18 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:18 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:18 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:18 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:18 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:18 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:44:18 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:18 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:44:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:18 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:18 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:18 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:18 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:44:18 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:18 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:44:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:44:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:21 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:44:21 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:21 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:44:21 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:44:21 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:44:21 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:44:21 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:44:21 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:21 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:44:21 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:44:21 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:44:21 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:44:21 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:44:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:44:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:44:21 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:21 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:44:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:44:21 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:44:21 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:21 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:44:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:44:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:44:21 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:21 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:44:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:44:21 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:44:21 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:44:21 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:44:21 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:21 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:44:21 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:44:21 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:44:21 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:44:22 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:44:22 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:44:28 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:44:28 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:44:28 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:44:28 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[25]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:44:28 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[25]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:28 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[25]/td//i[contains(@class,"edit")] found." 2021-12-14 00:44:28 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[25]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:28 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[25]/td//i[contains(@class,"edit")] found." 2021-12-14 00:44:28 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[25]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:44:28 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[25]/td//i[contains(@class,"edit")]" 2021-12-14 00:44:29 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[25]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:44:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:44:29 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:29 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:29 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:44:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:29 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:29 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:44:29 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:29 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:44:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:29 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:29 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:44:29 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:29 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:44:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:44:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:44:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:44:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:44:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:44:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:44:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:44:32 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:32 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:44:32 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:44:32 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:44:32 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:44:32 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:44:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:44:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:44:32 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:32 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:44:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:44:32 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:44:32 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:32 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:44:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:44:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:44:32 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:32 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:44:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:44:32 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:44:32 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:44:32 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:44:32 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:32 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:44:32 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:44:33 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:44:33 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:44:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:44:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:44:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:44:39 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:44:39 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:44:39 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[26]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:44:39 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[26]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:39 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[26]/td//i[contains(@class,"edit")] found." 2021-12-14 00:44:39 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[26]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:39 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[26]/td//i[contains(@class,"edit")] found." 2021-12-14 00:44:39 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[26]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:44:39 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[26]/td//i[contains(@class,"edit")]" 2021-12-14 00:44:40 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[26]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:44:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:44:40 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:40 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:40 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:44:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:40 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:40 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:44:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:44:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:40 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:40 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:44:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:44:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:44:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:42 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:44:42 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:42 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:44:42 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:44:42 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:44:43 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:44:43 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:44:43 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:43 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:44:43 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:44:43 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:44:43 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:44:43 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:44:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:44:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:44:43 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:43 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:44:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:44:43 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:44:43 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:43 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:44:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:44:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:44:43 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:43 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:44:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:44:43 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:44:43 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:44:43 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:44:43 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:43 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:44:43 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:44:43 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:44:43 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:44:43 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:44:43 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:44:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:44:50 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:44:50 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:44:50 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[27]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:44:50 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[27]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:51 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[27]/td//i[contains(@class,"edit")] found." 2021-12-14 00:44:51 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[27]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:51 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[27]/td//i[contains(@class,"edit")] found." 2021-12-14 00:44:51 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[27]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:44:51 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[27]/td//i[contains(@class,"edit")]" 2021-12-14 00:44:51 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[27]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:44:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:44:51 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:51 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:51 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:44:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:44:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:51 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:51 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:51 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:44:51 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:51 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:44:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:51 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:51 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:44:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:44:51 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:44:51 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:51 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:44:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:44:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:54 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:44:54 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:54 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:44:54 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:44:54 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:44:54 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:44:54 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:44:54 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:54 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:44:54 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:44:54 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:44:54 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:44:54 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:44:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:44:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:44:54 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:54 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:44:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:44:54 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:44:54 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:54 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:44:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:44:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:44:54 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:54 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:44:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:44:54 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:44:55 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:44:55 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:44:55 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:44:55 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:44:55 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:44:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:44:55 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:44:55 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:44:55 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:44:55 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:45:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:45:02 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:45:02 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:45:02 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[28]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:45:02 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[28]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:02 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[28]/td//i[contains(@class,"edit")] found." 2021-12-14 00:45:02 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[28]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:02 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[28]/td//i[contains(@class,"edit")] found." 2021-12-14 00:45:02 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[28]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:45:02 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[28]/td//i[contains(@class,"edit")]" 2021-12-14 00:45:02 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[28]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:45:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:45:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:45:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:45:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:45:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:45:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:45:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:45:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:05 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:45:05 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:05 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:45:05 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:45:05 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:45:05 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:45:05 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:45:05 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:05 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:45:05 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:45:05 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:45:05 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:45:05 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:45:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:45:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:45:05 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:05 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:45:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:45:05 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:45:05 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:05 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:45:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:45:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:45:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:45:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:45:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:45:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:45:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:45:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:45:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:45:06 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:45:06 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:45:06 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:45:06 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:45:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:45:13 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:45:13 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:45:13 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[29]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:45:13 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[29]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:13 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[29]/td//i[contains(@class,"edit")] found." 2021-12-14 00:45:13 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[29]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:13 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[29]/td//i[contains(@class,"edit")] found." 2021-12-14 00:45:13 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[29]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:45:13 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[29]/td//i[contains(@class,"edit")]" 2021-12-14 00:45:14 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[29]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:45:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:45:14 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:14 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:14 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:14 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:14 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:45:14 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:14 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:14 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:14 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:14 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:14 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:45:14 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:14 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:45:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:14 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:14 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:14 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:14 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:45:14 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:14 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:45:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:45:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:17 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:45:17 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:17 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:45:17 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:45:17 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:45:17 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:45:17 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:45:17 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:17 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:45:17 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:45:17 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:45:17 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:45:17 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:45:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:45:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:45:17 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:17 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:45:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:45:17 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:45:17 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:17 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:45:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:45:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:45:17 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:17 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:45:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:45:17 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:45:17 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:45:17 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:45:17 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:17 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:45:17 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:45:17 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:45:17 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:45:18 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:45:18 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:45:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:45:26 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:45:26 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:45:26 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[30]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:45:26 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[30]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:26 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[30]/td//i[contains(@class,"edit")] found." 2021-12-14 00:45:26 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[30]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:26 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[30]/td//i[contains(@class,"edit")] found." 2021-12-14 00:45:26 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[30]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:45:26 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[30]/td//i[contains(@class,"edit")]" 2021-12-14 00:45:26 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[30]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:45:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:45:26 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:26 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:26 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:45:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:26 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:26 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:27 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:27 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:45:27 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:45:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:27 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:27 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:27 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:27 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:45:27 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:45:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:45:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:29 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:45:29 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:29 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:45:29 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:45:29 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:45:29 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:45:29 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:45:29 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:29 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:45:29 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:45:29 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:45:29 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:45:29 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:45:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:45:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:45:29 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:29 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:45:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:45:29 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:45:29 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:29 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:45:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:45:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:45:29 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:29 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:45:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:45:29 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:45:29 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:45:29 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:45:29 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:29 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:45:29 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:45:29 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:45:29 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:45:30 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:45:30 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:45:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:45:37 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:45:37 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:45:37 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[31]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:45:37 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[31]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:37 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[31]/td//i[contains(@class,"edit")] found." 2021-12-14 00:45:37 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[31]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:38 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[31]/td//i[contains(@class,"edit")] found." 2021-12-14 00:45:38 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[31]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:45:38 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[31]/td//i[contains(@class,"edit")]" 2021-12-14 00:45:38 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[31]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:45:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:45:38 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:38 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:38 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:45:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:38 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:38 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:38 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:38 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:45:38 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:45:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:38 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:38 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:38 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:38 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:45:38 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:45:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:45:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:40 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:45:40 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:40 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:45:40 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:45:40 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:45:41 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:45:41 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:45:41 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:41 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:45:41 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:45:41 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:45:41 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:45:41 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:45:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:45:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:45:41 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:41 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:45:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:45:41 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:45:41 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:41 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:45:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:45:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:45:41 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:41 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:45:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:45:41 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:45:41 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:45:41 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:45:41 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:41 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:45:41 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:45:41 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:45:41 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:45:41 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:45:41 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:45:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:45:48 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:45:48 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:45:48 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[32]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:45:48 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[32]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:48 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[32]/td//i[contains(@class,"edit")] found." 2021-12-14 00:45:48 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[32]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:48 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[32]/td//i[contains(@class,"edit")] found." 2021-12-14 00:45:48 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[32]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:45:48 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[32]/td//i[contains(@class,"edit")]" 2021-12-14 00:45:49 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[32]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:45:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:45:49 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:45:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:45:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:49 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:49 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:45:49 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:49 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:45:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:49 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:49 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:45:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:45:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:45:49 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:49 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:45:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:45:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:51 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:45:51 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:45:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:45:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:45:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:45:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:45:52 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:52 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:45:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:45:52 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:45:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:45:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:45:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:45:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:45:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:45:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:45:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:45:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:52 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:45:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:45:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:45:52 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:52 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:45:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:45:52 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:45:52 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:45:52 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:45:52 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:45:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:45:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:45:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:45:52 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:45:52 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:45:53 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:45:53 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:45:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:45:59 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:45:59 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:45:59 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[33]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:45:59 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[33]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:00 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[33]/td//i[contains(@class,"edit")] found." 2021-12-14 00:46:00 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[33]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:00 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[33]/td//i[contains(@class,"edit")] found." 2021-12-14 00:46:00 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[33]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:46:00 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[33]/td//i[contains(@class,"edit")]" 2021-12-14 00:46:00 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[33]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:46:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:46:00 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:00 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:00 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:46:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:46:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:46:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:01 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:01 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:46:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:46:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:46:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:03 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:46:03 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:03 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:46:03 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:46:03 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:46:04 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:46:04 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:46:04 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:04 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:46:04 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:46:04 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:46:04 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:46:04 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:46:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:46:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:46:04 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:04 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:46:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:46:04 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:46:04 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:04 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:46:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:46:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:46:04 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:04 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:46:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:46:04 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:46:04 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:46:04 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:46:04 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:04 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:46:04 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:46:04 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:46:04 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:46:05 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:46:05 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:46:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:46:11 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:46:11 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:46:11 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[34]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:46:11 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[34]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:11 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[34]/td//i[contains(@class,"edit")] found." 2021-12-14 00:46:11 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[34]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:11 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[34]/td//i[contains(@class,"edit")] found." 2021-12-14 00:46:11 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[34]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:46:11 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[34]/td//i[contains(@class,"edit")]" 2021-12-14 00:46:12 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[34]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:46:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:46:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:46:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:46:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:46:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:46:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:46:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:46:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:15 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:46:15 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:15 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:46:15 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:46:15 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:46:15 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:46:15 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:46:15 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:15 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:46:15 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:46:15 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:46:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:46:15 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:46:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:46:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:46:15 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:15 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:46:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:46:15 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:46:15 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:15 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:46:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:46:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:46:15 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:15 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:46:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:46:15 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:46:16 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:46:16 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:46:16 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:16 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:46:16 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:46:16 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:46:16 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:46:16 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:46:16 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:46:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:46:23 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:46:23 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:46:23 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[35]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:46:23 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[35]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:23 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[35]/td//i[contains(@class,"edit")] found." 2021-12-14 00:46:23 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[35]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:23 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[35]/td//i[contains(@class,"edit")] found." 2021-12-14 00:46:23 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[35]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:46:23 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[35]/td//i[contains(@class,"edit")]" 2021-12-14 00:46:23 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[35]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:46:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:46:23 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:46:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:46:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:46:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:46:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:46:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:46:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:46:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:46:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:46:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:46:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:46:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:46:26 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:26 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:46:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:46:26 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:46:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:46:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:46:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:46:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:46:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:46:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:46:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:46:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:46:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:46:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:46:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:46:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:46:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:46:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:46:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:46:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:46:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:46:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:46:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:46:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:46:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:46:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:46:33 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:46:33 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:46:33 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[36]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:46:33 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[36]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:34 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[36]/td//i[contains(@class,"edit")] found." 2021-12-14 00:46:34 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[36]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:34 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[36]/td//i[contains(@class,"edit")] found." 2021-12-14 00:46:34 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[36]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:46:34 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[36]/td//i[contains(@class,"edit")]" 2021-12-14 00:46:34 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[36]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:46:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:46:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:46:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:46:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:46:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:46:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:46:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:46:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:46:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:46:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:46:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:46:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:46:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:46:37 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:37 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:46:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:46:37 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:46:37 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:46:37 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:46:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:46:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:46:37 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:37 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:46:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:46:37 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:46:37 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:37 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:46:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:46:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:46:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:46:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:46:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:46:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:46:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:46:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:46:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:46:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:46:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:46:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:46:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:46:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:46:44 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:46:44 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:46:44 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[37]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:46:44 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[37]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:44 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[37]/td//i[contains(@class,"edit")] found." 2021-12-14 00:46:44 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[37]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:44 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[37]/td//i[contains(@class,"edit")] found." 2021-12-14 00:46:44 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[37]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:46:44 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[37]/td//i[contains(@class,"edit")]" 2021-12-14 00:46:45 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[37]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:46:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:46:45 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:45 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:45 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:46:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:45 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:45 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:45 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:45 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:46:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:46:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:45 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:45 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:45 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:45 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:46:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:46:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:46:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:48 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:46:48 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:48 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:46:48 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:46:48 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:46:48 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:46:48 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:46:48 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:48 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:46:48 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:46:48 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:46:48 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:46:48 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:46:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:46:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:46:48 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:48 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:46:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:46:48 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:46:48 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:48 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:46:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:46:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:46:48 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:48 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:46:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:46:49 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:46:49 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:46:49 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:46:49 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:49 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:46:49 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:46:49 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:46:49 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:46:49 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:46:49 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:46:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:46:56 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:46:56 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:46:56 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[38]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:46:56 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[38]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:56 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[38]/td//i[contains(@class,"edit")] found." 2021-12-14 00:46:56 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[38]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:56 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[38]/td//i[contains(@class,"edit")] found." 2021-12-14 00:46:56 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[38]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:46:56 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[38]/td//i[contains(@class,"edit")]" 2021-12-14 00:46:56 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[38]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:46:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:46:56 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:56 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:56 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:46:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:46:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:46:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:46:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:46:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:46:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:46:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:46:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:46:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:59 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:46:59 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:59 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:46:59 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:46:59 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:46:59 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:46:59 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:46:59 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:59 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:46:59 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:46:59 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:46:59 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:46:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:46:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:46:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:46:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:46:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:46:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:46:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:46:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:46:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:46:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:46:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:46:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:46:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:46:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:47:00 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:47:00 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:47:00 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:00 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:47:00 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:47:00 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:47:00 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:47:00 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:47:00 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:47:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:47:07 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:47:07 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:47:07 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[39]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:47:07 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[39]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:07 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[39]/td//i[contains(@class,"edit")] found." 2021-12-14 00:47:07 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[39]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:07 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[39]/td//i[contains(@class,"edit")] found." 2021-12-14 00:47:07 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[39]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:47:07 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[39]/td//i[contains(@class,"edit")]" 2021-12-14 00:47:07 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[39]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:47:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:47:07 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:08 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:08 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:08 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:08 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:47:08 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:08 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:08 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:08 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:08 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:08 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:47:08 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:08 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:47:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:08 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:08 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:08 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:08 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:47:08 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:08 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:47:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:47:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:10 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:47:10 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:10 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:47:10 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:47:10 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:47:10 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:47:10 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:47:10 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:10 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:47:10 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:47:10 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:47:10 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:47:10 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:47:10 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:47:10 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:10 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:47:10 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:10 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:47:10 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:47:10 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:47:10 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:10 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:47:10 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:47:10 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:10 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:47:11 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:11 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:47:11 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:47:11 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:47:11 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:47:11 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:47:11 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:11 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:47:11 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:47:11 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:47:11 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:47:11 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:47:11 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:47:18 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:47:18 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:47:18 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:47:18 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[40]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:47:18 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[40]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:18 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[40]/td//i[contains(@class,"edit")] found." 2021-12-14 00:47:18 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[40]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:18 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[40]/td//i[contains(@class,"edit")] found." 2021-12-14 00:47:18 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[40]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:47:18 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[40]/td//i[contains(@class,"edit")]" 2021-12-14 00:47:18 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[40]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:47:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:47:18 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:18 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:18 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:18 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:18 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:47:18 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:18 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:18 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:18 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:18 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:18 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:47:18 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:18 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:47:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:18 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:18 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:18 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:18 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:47:19 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:19 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:47:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:47:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:21 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:47:21 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:21 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:47:21 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:47:21 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:47:21 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:47:21 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:47:21 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:21 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:47:21 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:47:21 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:47:21 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:47:21 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:47:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:47:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:47:22 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:22 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:47:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:47:22 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:47:22 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:22 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:47:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:47:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:47:22 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:22 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:47:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:47:22 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:47:22 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:47:22 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:47:22 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:22 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:47:22 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:47:22 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:47:22 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:47:22 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:47:22 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:47:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:47:29 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:47:29 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:47:29 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[41]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:47:29 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[41]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:29 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[41]/td//i[contains(@class,"edit")] found." 2021-12-14 00:47:29 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[41]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:29 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[41]/td//i[contains(@class,"edit")] found." 2021-12-14 00:47:29 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[41]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:47:29 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[41]/td//i[contains(@class,"edit")]" 2021-12-14 00:47:30 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[41]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:47:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:47:30 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:30 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:30 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:47:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:47:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:47:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:47:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:47:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:47:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:47:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:33 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:47:33 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:47:33 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:47:33 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:47:33 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:47:33 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:33 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:47:33 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:47:33 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:47:33 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:47:33 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:47:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:47:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:47:33 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:33 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:47:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:47:33 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:47:33 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:33 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:47:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:47:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:47:33 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:33 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:47:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:47:33 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:47:33 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:47:33 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:47:33 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:34 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:47:34 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:47:34 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:47:34 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:47:34 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:47:34 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:47:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:47:41 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:47:41 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:47:41 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[42]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:47:41 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[42]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:41 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[42]/td//i[contains(@class,"edit")] found." 2021-12-14 00:47:41 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[42]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:42 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[42]/td//i[contains(@class,"edit")] found." 2021-12-14 00:47:42 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[42]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:47:42 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[42]/td//i[contains(@class,"edit")]" 2021-12-14 00:47:42 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[42]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:47:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:47:42 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:47:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:42 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:42 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:42 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:42 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:47:42 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:42 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:47:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:42 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:42 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:42 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:42 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:47:42 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:42 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:47:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:47:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:44 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:47:44 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:44 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:47:44 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:47:44 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:47:45 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:47:45 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:47:45 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:45 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:47:45 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:47:45 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:47:45 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:47:45 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:47:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:47:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:47:45 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:45 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:47:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:47:45 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:47:45 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:45 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:47:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:47:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:47:45 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:45 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:47:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:47:45 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:47:45 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:47:45 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:47:45 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:45 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:47:45 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:47:45 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:47:45 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:47:45 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:47:45 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:47:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:47:52 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:47:52 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:47:52 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[43]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:47:52 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[43]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:52 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[43]/td//i[contains(@class,"edit")] found." 2021-12-14 00:47:52 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[43]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:52 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[43]/td//i[contains(@class,"edit")] found." 2021-12-14 00:47:52 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[43]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:47:52 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[43]/td//i[contains(@class,"edit")]" 2021-12-14 00:47:53 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[43]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:47:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:47:53 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:53 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:53 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:47:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:47:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:47:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:47:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:47:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:47:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:47:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:47:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:47:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:55 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:47:55 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:55 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:47:55 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:47:55 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:47:55 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:47:55 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:47:55 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:56 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:47:56 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:47:56 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:47:56 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:47:56 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:47:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:47:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:47:56 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:56 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:47:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:47:56 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:47:56 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:56 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:47:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:47:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:47:56 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:56 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:47:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:47:56 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:47:56 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:47:56 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:47:56 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:47:56 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:47:56 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:47:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:47:56 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:47:56 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:47:56 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:47:56 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:48:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:48:03 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:48:03 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:48:03 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[44]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:48:03 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[44]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:03 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[44]/td//i[contains(@class,"edit")] found." 2021-12-14 00:48:03 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[44]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:03 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[44]/td//i[contains(@class,"edit")] found." 2021-12-14 00:48:03 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[44]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:48:03 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[44]/td//i[contains(@class,"edit")]" 2021-12-14 00:48:03 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[44]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:48:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:48:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:04 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:04 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:48:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:48:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:48:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:48:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:48:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:48:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:48:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:48:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:48:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:48:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:48:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:48:06 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:06 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:48:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:48:07 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:48:07 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:48:07 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:48:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:48:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:48:07 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:07 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:48:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:48:07 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:48:07 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:07 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:48:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:48:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:48:07 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:07 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:48:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:48:07 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:48:07 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:48:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:48:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:48:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:48:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:48:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:48:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:48:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:48:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:48:15 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:48:15 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:48:15 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[45]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:48:15 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[45]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:15 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[45]/td//i[contains(@class,"edit")] found." 2021-12-14 00:48:15 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[45]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:15 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[45]/td//i[contains(@class,"edit")] found." 2021-12-14 00:48:15 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[45]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:48:15 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[45]/td//i[contains(@class,"edit")]" 2021-12-14 00:48:15 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[45]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:48:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:48:15 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:15 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:15 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:48:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:15 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:15 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:15 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:15 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:48:15 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:15 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:48:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:15 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:15 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:15 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:15 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:48:15 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:15 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:48:17 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:48:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:17 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:48:17 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:17 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:48:17 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:48:17 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:48:17 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:48:17 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:48:17 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:17 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:48:18 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:48:18 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:48:18 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:48:18 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:48:18 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:48:18 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:18 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:48:18 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:18 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:48:18 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:48:18 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:48:18 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:18 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:48:18 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:48:18 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:18 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:48:18 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:18 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:48:18 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:48:18 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:48:18 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:48:18 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:48:18 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:18 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:48:18 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:18 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:48:18 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:48:18 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:48:18 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:48:18 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:48:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:48:25 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:48:25 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:48:25 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[46]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:48:25 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[46]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:25 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[46]/td//i[contains(@class,"edit")] found." 2021-12-14 00:48:25 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[46]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:26 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[46]/td//i[contains(@class,"edit")] found." 2021-12-14 00:48:26 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[46]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:48:26 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[46]/td//i[contains(@class,"edit")]" 2021-12-14 00:48:26 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[46]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:48:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:48:26 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:26 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:26 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:48:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:26 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:26 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:26 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:26 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:48:26 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:26 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:48:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:26 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:26 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:26 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:26 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:48:26 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:26 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:48:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:48:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:28 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:48:28 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:28 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:48:28 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:48:28 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:48:28 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:48:28 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:48:28 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:28 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:48:28 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:48:28 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:48:28 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:48:28 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:48:28 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:48:28 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:28 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:48:28 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:28 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:48:28 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:48:28 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:48:28 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:29 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:48:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:48:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:48:29 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:29 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:48:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:48:29 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:48:29 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:48:29 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:48:29 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:29 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:48:29 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:48:29 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:48:29 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:48:29 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:48:29 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:48:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:48:36 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:48:36 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:48:36 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[47]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:48:36 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[47]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:36 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[47]/td//i[contains(@class,"edit")] found." 2021-12-14 00:48:36 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[47]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:36 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[47]/td//i[contains(@class,"edit")] found." 2021-12-14 00:48:36 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[47]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:48:36 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[47]/td//i[contains(@class,"edit")]" 2021-12-14 00:48:37 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[47]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:48:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:48:37 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:37 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:37 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:48:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:37 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:37 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:37 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:37 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:48:37 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:37 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:48:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:37 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:37 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:37 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:37 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:48:37 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:37 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:48:39 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:48:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:39 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:48:39 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:39 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:48:39 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:48:39 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:48:39 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:48:39 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:48:39 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:39 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:48:39 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:48:39 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:48:39 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:48:39 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:48:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:48:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:48:39 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:39 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:48:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:48:39 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:48:39 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:40 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:48:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:48:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:48:40 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:40 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:48:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:48:40 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:48:40 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:48:40 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:48:40 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:40 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:48:40 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:48:40 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:48:40 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:48:40 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:48:40 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:48:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:48:47 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:48:47 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:48:47 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[48]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:48:47 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[48]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:47 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[48]/td//i[contains(@class,"edit")] found." 2021-12-14 00:48:47 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[48]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:47 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[48]/td//i[contains(@class,"edit")] found." 2021-12-14 00:48:47 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[48]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:48:47 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[48]/td//i[contains(@class,"edit")]" 2021-12-14 00:48:47 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[48]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:48:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:48:47 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:48 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:48 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:48:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:48 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:48 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:48 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:48 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:48:48 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:48 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:48:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:48 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:48 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:48 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:48 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:48:48 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:48 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:48:50 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:48:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:50 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:48:50 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:50 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:48:50 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:48:50 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:48:50 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:48:50 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:48:50 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:50 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:48:50 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:48:50 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:48:50 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:48:50 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:48:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:48:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:48:50 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:50 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:48:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:48:50 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:48:50 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:50 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:48:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:48:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:48:50 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:50 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:48:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:48:50 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:48:50 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:48:50 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:48:50 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:50 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:48:50 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:48:50 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:48:50 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:48:51 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:48:51 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:48:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:48:58 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:48:58 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:48:58 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[49]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:48:58 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[49]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:58 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[49]/td//i[contains(@class,"edit")] found." 2021-12-14 00:48:58 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[49]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:58 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[49]/td//i[contains(@class,"edit")] found." 2021-12-14 00:48:58 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[49]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:48:58 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[49]/td//i[contains(@class,"edit")]" 2021-12-14 00:48:58 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[49]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:48:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:48:58 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:58 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:58 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:48:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:48:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:58 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:58 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:58 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:58 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:48:58 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:58 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:48:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:48:58 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:58 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:58 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:48:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:48:58 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:48:58 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:48:58 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:49:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:49:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:00 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:49:00 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:00 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:49:00 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:49:00 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:49:01 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:49:01 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:49:01 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:01 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:49:01 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:49:01 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:49:01 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:49:01 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:49:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:49:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:49:01 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:01 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:49:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:49:01 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:49:01 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:01 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:49:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:49:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:49:01 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:01 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:49:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:49:01 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:49:01 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:49:01 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:49:01 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:01 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:49:01 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:49:01 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:49:01 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:49:01 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:49:01 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:49:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:49:08 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:49:08 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:49:08 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[50]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:49:08 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[50]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:08 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[50]/td//i[contains(@class,"edit")] found." 2021-12-14 00:49:08 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[50]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:08 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[50]/td//i[contains(@class,"edit")] found." 2021-12-14 00:49:08 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[50]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:49:08 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[50]/td//i[contains(@class,"edit")]" 2021-12-14 00:49:09 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[50]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:49:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:49:09 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:09 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:09 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:49:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:09 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:09 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:09 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:09 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:49:09 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:09 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:49:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:09 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:09 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:09 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:09 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:49:09 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:09 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:49:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:49:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:11 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:49:11 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:11 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:49:11 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:49:11 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:49:11 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:49:11 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:49:11 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:11 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:49:11 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:49:12 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:49:12 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:49:12 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:49:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:49:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:49:12 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:12 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:49:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:49:12 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:49:12 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:12 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:49:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:49:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:49:12 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:12 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:49:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:49:12 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:49:12 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:49:12 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:49:12 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:12 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:49:12 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:49:12 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:49:12 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:49:12 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:49:12 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:49:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:49:19 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:49:19 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:49:19 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[51]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:49:19 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[51]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:19 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[51]/td//i[contains(@class,"edit")] found." 2021-12-14 00:49:19 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[51]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:19 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[51]/td//i[contains(@class,"edit")] found." 2021-12-14 00:49:19 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[51]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:49:19 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[51]/td//i[contains(@class,"edit")]" 2021-12-14 00:49:19 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[51]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:49:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:49:19 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:19 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:19 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:49:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:19 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:19 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:49:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:49:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:20 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:49:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:49:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:49:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:22 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:49:22 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:22 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:49:22 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:49:22 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:49:22 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:49:22 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:49:22 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:22 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:49:22 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:49:22 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:49:22 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:49:22 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:49:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:49:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:49:22 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:22 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:49:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:49:22 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:49:22 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:22 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:49:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:49:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:49:22 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:22 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:49:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:49:22 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:49:22 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:49:22 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:49:22 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:22 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:49:22 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:49:22 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:49:22 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:49:23 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:49:23 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:49:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:49:29 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:49:29 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:49:29 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[52]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:49:29 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[52]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:29 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[52]/td//i[contains(@class,"edit")] found." 2021-12-14 00:49:29 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[52]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:29 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[52]/td//i[contains(@class,"edit")] found." 2021-12-14 00:49:29 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[52]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:49:29 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[52]/td//i[contains(@class,"edit")]" 2021-12-14 00:49:30 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[52]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:49:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:49:30 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:30 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:30 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:49:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:49:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:49:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:49:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:49:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:49:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:33 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:49:33 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:33 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:49:33 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:49:33 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:49:33 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:49:33 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:49:33 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:33 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:49:33 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:49:33 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:49:33 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:49:33 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:49:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:49:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:49:33 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:33 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:49:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:49:33 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:49:33 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:33 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:49:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:49:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:49:33 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:33 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:49:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:49:33 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:49:33 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:49:33 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:49:33 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:33 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:49:33 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:49:33 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:49:33 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:49:34 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:49:34 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:49:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:49:40 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:49:40 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:49:40 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[53]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:49:40 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[53]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:40 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[53]/td//i[contains(@class,"edit")] found." 2021-12-14 00:49:40 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[53]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:40 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[53]/td//i[contains(@class,"edit")] found." 2021-12-14 00:49:40 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[53]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:49:40 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[53]/td//i[contains(@class,"edit")]" 2021-12-14 00:49:41 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[53]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:49:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:49:41 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:41 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:41 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:41 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:41 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:49:41 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:41 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:41 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:41 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:41 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:41 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:49:41 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:41 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:49:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:41 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:41 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:41 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:41 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:49:41 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:41 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:49:43 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:49:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:43 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:49:43 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:43 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:49:43 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:49:43 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:49:43 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:49:43 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:49:43 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:43 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:49:43 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:49:43 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:49:43 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:49:43 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:49:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:49:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:49:43 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:43 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:49:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:49:43 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:49:43 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:43 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:49:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:49:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:49:43 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:43 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:49:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:49:43 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:49:43 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:49:43 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:49:43 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:43 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:49:44 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:49:44 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:49:44 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:49:44 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:49:44 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:49:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:49:50 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:49:50 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:49:50 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[54]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:49:50 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[54]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:50 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[54]/td//i[contains(@class,"edit")] found." 2021-12-14 00:49:50 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[54]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:51 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[54]/td//i[contains(@class,"edit")] found." 2021-12-14 00:49:51 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[54]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:49:51 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[54]/td//i[contains(@class,"edit")]" 2021-12-14 00:49:51 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[54]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:49:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:49:51 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:51 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:51 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:49:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:49:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:51 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:51 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:51 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:49:51 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:51 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:49:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:51 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:51 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:49:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:49:51 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:49:51 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:51 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:49:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:49:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:53 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:49:53 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:53 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:49:53 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:49:53 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:49:53 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:49:53 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:49:53 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:53 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:49:53 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:49:53 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:49:53 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:49:53 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:49:53 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:49:53 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:49:53 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:53 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:49:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:49:53 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:49:53 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:53 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:49:53 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:49:53 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:49:53 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:53 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:49:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:49:53 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:49:54 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:49:54 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:49:54 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:49:54 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:49:54 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:49:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:49:54 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:49:54 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:49:54 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:49:54 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:50:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:50:00 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:50:00 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:50:00 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[55]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:50:00 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[55]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:00 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[55]/td//i[contains(@class,"edit")] found." 2021-12-14 00:50:00 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[55]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:01 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[55]/td//i[contains(@class,"edit")] found." 2021-12-14 00:50:01 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[55]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:50:01 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[55]/td//i[contains(@class,"edit")]" 2021-12-14 00:50:01 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[55]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:50:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:50:01 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:01 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:01 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:50:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:01 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:01 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:50:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:50:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:01 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:01 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:50:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:50:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:50:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:03 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:50:03 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:03 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:50:03 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:50:03 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:50:03 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:50:03 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:50:03 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:03 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:50:03 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:50:03 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:50:03 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:50:03 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:50:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:50:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:50:03 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:03 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:50:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:50:03 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:50:03 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:03 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:50:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:50:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:50:04 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:04 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:50:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:50:04 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:50:04 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:50:04 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:50:04 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:04 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:50:04 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:50:04 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:50:04 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:50:04 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:50:04 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:50:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:50:11 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:50:11 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:50:11 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[56]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:50:11 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[56]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:11 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[56]/td//i[contains(@class,"edit")] found." 2021-12-14 00:50:11 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[56]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:11 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[56]/td//i[contains(@class,"edit")] found." 2021-12-14 00:50:11 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[56]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:50:11 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[56]/td//i[contains(@class,"edit")]" 2021-12-14 00:50:11 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[56]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:50:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:50:11 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:11 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:11 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:50:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:50:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:50:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:50:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:50:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:50:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:50:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:50:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:50:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:50:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:50:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:50:14 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:14 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:50:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:50:14 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:50:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:50:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:50:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:50:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:50:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:50:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:50:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:50:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:14 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:50:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:50:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:50:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:14 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:50:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:50:14 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:50:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:50:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:50:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:14 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:50:14 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:50:14 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:50:14 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:50:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:50:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:50:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:50:21 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:50:21 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:50:21 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[57]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:50:21 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[57]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:22 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[57]/td//i[contains(@class,"edit")] found." 2021-12-14 00:50:22 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[57]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:22 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[57]/td//i[contains(@class,"edit")] found." 2021-12-14 00:50:22 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[57]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:50:22 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[57]/td//i[contains(@class,"edit")]" 2021-12-14 00:50:22 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[57]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:50:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:50:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:22 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:50:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:22 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:22 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:22 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:22 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:50:22 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:22 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:50:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:22 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:22 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:22 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:22 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:50:22 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:22 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:50:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:50:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:24 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:50:24 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:24 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:50:24 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:50:24 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:50:24 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:50:24 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:50:24 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:24 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:50:24 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:50:24 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:50:24 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:50:24 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:50:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:50:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:50:24 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:50:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:50:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:50:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:50:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:50:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:50:25 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:25 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:50:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:50:25 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:50:25 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:50:25 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:50:25 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:25 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:50:25 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:50:25 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:50:25 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:50:25 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:50:25 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:50:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:50:31 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:50:31 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:50:31 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[58]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:50:31 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[58]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:31 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[58]/td//i[contains(@class,"edit")] found." 2021-12-14 00:50:32 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[58]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:32 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[58]/td//i[contains(@class,"edit")] found." 2021-12-14 00:50:32 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[58]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:50:32 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[58]/td//i[contains(@class,"edit")]" 2021-12-14 00:50:32 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[58]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:50:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:50:32 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:32 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:32 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:50:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:50:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:50:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:50:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:50:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:50:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:50:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:34 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:50:34 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:50:34 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:50:34 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:50:34 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:50:34 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:34 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:50:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:50:34 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:50:34 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:50:34 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:50:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:50:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:50:35 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:35 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:50:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:50:35 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:50:35 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:35 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:50:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:50:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:50:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:50:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:50:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:50:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:50:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:50:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:50:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:50:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:50:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:50:35 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:50:35 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:50:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:50:42 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:50:42 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:50:42 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[59]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:50:42 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[59]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:42 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[59]/td//i[contains(@class,"edit")] found." 2021-12-14 00:50:42 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[59]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:42 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[59]/td//i[contains(@class,"edit")] found." 2021-12-14 00:50:42 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[59]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:50:42 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[59]/td//i[contains(@class,"edit")]" 2021-12-14 00:50:42 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[59]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:50:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:50:42 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:50:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:42 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:42 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:42 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:42 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:50:42 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:42 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:50:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:42 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:42 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:42 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:42 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:50:42 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:42 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:50:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:50:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:45 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:50:45 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:45 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:50:45 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:50:45 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:50:45 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:50:45 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:50:45 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:45 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:50:45 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:50:45 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:50:45 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:50:45 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:50:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:50:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:50:45 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:45 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:50:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:50:45 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:50:45 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:45 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:50:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:50:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:50:46 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:46 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:50:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:50:46 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:50:46 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:50:46 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:50:46 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:46 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:50:46 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:50:46 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:50:46 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:50:46 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:50:46 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:50:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:50:53 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:50:53 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:50:53 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[60]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:50:53 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[60]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:53 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[60]/td//i[contains(@class,"edit")] found." 2021-12-14 00:50:53 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[60]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:53 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[60]/td//i[contains(@class,"edit")] found." 2021-12-14 00:50:53 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[60]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:50:53 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[60]/td//i[contains(@class,"edit")]" 2021-12-14 00:50:53 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[60]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:50:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:50:53 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:53 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:53 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:50:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:50:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:50:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:50:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:50:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:50:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:50:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:50:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:50:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:55 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:50:55 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:55 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:50:55 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:50:55 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:50:55 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:50:55 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:50:55 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:55 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:50:55 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:50:55 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:50:55 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:50:55 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:50:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:50:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:50:55 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:55 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:50:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:50:55 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:50:55 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:55 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:50:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:50:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:50:56 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:56 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:50:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:50:56 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:50:56 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:50:56 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:50:56 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:50:56 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:50:56 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:50:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:50:56 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:50:56 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:50:56 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:50:56 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:51:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:51:03 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:51:03 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:51:03 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[61]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:51:03 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[61]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:03 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[61]/td//i[contains(@class,"edit")] found." 2021-12-14 00:51:03 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[61]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:03 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[61]/td//i[contains(@class,"edit")] found." 2021-12-14 00:51:03 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[61]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:51:03 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[61]/td//i[contains(@class,"edit")]" 2021-12-14 00:51:03 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[61]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:51:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:51:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:51:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:51:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:51:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:51:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:51:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:51:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:05 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:51:05 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:05 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:51:05 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:51:05 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:51:05 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:51:05 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:51:05 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:05 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:51:05 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:51:05 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:51:05 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:51:05 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:51:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:51:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:51:05 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:05 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:51:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:51:05 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:51:05 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:05 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:51:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:51:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:51:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:51:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:51:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:51:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:51:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:51:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:51:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:51:06 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:51:06 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:51:06 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:51:06 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:51:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:51:13 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:51:13 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:51:13 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[62]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:51:13 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[62]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:13 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[62]/td//i[contains(@class,"edit")] found." 2021-12-14 00:51:13 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[62]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:13 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[62]/td//i[contains(@class,"edit")] found." 2021-12-14 00:51:13 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[62]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:51:13 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[62]/td//i[contains(@class,"edit")]" 2021-12-14 00:51:13 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[62]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:51:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:51:13 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:13 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:13 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:51:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:51:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:51:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:51:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:51:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:51:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:15 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:51:15 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:15 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:51:15 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:51:15 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:51:15 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:51:15 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:51:15 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:15 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:51:15 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:51:15 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:51:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:51:15 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:51:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:51:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:51:15 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:15 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:51:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:51:15 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:51:15 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:15 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:51:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:51:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:51:16 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:16 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:51:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:51:16 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:51:16 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:51:16 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:51:16 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:16 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:51:16 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:51:16 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:51:16 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:51:16 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:51:16 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:51:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:51:23 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:51:23 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:51:23 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[63]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:51:23 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[63]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:23 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[63]/td//i[contains(@class,"edit")] found." 2021-12-14 00:51:23 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[63]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:23 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[63]/td//i[contains(@class,"edit")] found." 2021-12-14 00:51:23 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[63]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:51:23 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[63]/td//i[contains(@class,"edit")]" 2021-12-14 00:51:23 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[63]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:51:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:51:23 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:51:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:51:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:51:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:51:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:51:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:51:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:51:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:51:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:51:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:51:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:51:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:51:25 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:25 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:51:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:51:26 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:51:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:51:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:51:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:51:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:51:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:51:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:51:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:51:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:51:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:51:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:51:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:51:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:51:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:51:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:51:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:51:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:51:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:51:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:51:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:51:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:51:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:51:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:51:33 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:51:33 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:51:33 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[64]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:51:33 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[64]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:33 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[64]/td//i[contains(@class,"edit")] found." 2021-12-14 00:51:33 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[64]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:33 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[64]/td//i[contains(@class,"edit")] found." 2021-12-14 00:51:33 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[64]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:51:33 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[64]/td//i[contains(@class,"edit")]" 2021-12-14 00:51:33 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[64]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:51:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:51:33 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:33 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:33 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:51:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:51:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:33 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:51:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:51:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:33 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:51:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:51:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:35 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:51:35 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:35 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:51:35 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:51:35 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:51:36 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:51:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:51:36 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:36 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:51:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:51:36 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:51:36 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:51:36 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:51:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:51:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:51:36 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:36 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:51:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:51:36 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:51:36 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:36 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:51:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:51:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:51:36 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:36 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:51:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:51:36 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:51:36 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:51:36 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:51:36 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:36 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:51:36 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:51:36 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:51:36 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:51:36 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:51:36 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:51:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:51:43 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:51:43 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:51:43 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[65]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:51:43 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[65]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:43 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[65]/td//i[contains(@class,"edit")] found." 2021-12-14 00:51:43 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[65]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:43 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[65]/td//i[contains(@class,"edit")] found." 2021-12-14 00:51:43 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[65]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:51:43 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[65]/td//i[contains(@class,"edit")]" 2021-12-14 00:51:44 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[65]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:51:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:51:44 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:44 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:44 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:51:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:51:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:51:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:51:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:51:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:51:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:51:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:51:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:51:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:51:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:51:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:51:46 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:46 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:51:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:51:46 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:51:46 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:51:46 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:51:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:51:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:51:46 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:46 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:51:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:51:46 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:51:46 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:46 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:51:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:51:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:51:47 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:51:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:51:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:51:47 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:51:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:51:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:51:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:51:47 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:51:47 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:51:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:51:47 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:51:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:51:54 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:51:54 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:51:54 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[66]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:51:54 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[66]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:54 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[66]/td//i[contains(@class,"edit")] found." 2021-12-14 00:51:54 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[66]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:54 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[66]/td//i[contains(@class,"edit")] found." 2021-12-14 00:51:54 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[66]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:51:54 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[66]/td//i[contains(@class,"edit")]" 2021-12-14 00:51:54 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[66]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:51:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:51:54 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:54 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:54 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:51:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:51:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:51:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:51:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:51:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:51:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:51:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:51:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:51:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:56 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:51:56 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:56 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:51:56 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:51:56 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:51:57 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:51:57 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:51:57 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:57 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:51:57 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:51:57 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:51:57 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:51:57 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:51:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:51:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:51:57 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:57 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:51:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:51:57 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:51:57 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:57 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:51:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:51:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:51:57 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:57 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:51:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:51:57 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:51:57 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:51:57 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:51:57 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:51:57 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:51:57 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:51:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:51:57 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:51:57 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:51:57 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:51:57 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:52:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:52:05 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:52:05 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:52:05 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[67]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:52:05 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[67]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:05 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[67]/td//i[contains(@class,"edit")] found." 2021-12-14 00:52:05 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[67]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:05 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[67]/td//i[contains(@class,"edit")] found." 2021-12-14 00:52:05 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[67]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:52:05 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[67]/td//i[contains(@class,"edit")]" 2021-12-14 00:52:06 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[67]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:52:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:52:06 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:06 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:06 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:52:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:52:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:52:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:52:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:52:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:52:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:52:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:52:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:52:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:52:08 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:52:08 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:52:08 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:08 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:52:08 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:52:08 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:52:08 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:52:08 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:52:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:52:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:52:08 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:08 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:52:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:52:08 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:52:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:52:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:52:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:52:09 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:09 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:52:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:52:09 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:52:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:52:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:52:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:52:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:52:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:52:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:52:09 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:52:09 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:52:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:52:16 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:52:16 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:52:16 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[68]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:52:16 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[68]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:16 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[68]/td//i[contains(@class,"edit")] found." 2021-12-14 00:52:16 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[68]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:16 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[68]/td//i[contains(@class,"edit")] found." 2021-12-14 00:52:16 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[68]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:52:16 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[68]/td//i[contains(@class,"edit")]" 2021-12-14 00:52:17 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[68]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:52:17 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:52:17 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:17 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:17 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:52:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:17 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:52:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:52:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:17 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:52:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:52:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:52:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:19 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:52:19 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:19 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:52:19 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:52:19 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:52:19 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:52:19 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:52:19 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:19 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:52:19 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:52:20 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:52:20 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:52:20 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:52:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:52:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:52:20 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:20 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:52:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:52:20 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:52:20 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:20 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:52:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:52:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:52:20 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:20 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:52:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:52:20 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:52:20 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:52:20 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:52:20 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:20 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:52:20 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:52:20 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:52:20 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:52:20 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:52:20 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:52:28 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:52:28 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:52:28 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:52:28 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[69]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:52:28 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[69]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:28 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[69]/td//i[contains(@class,"edit")] found." 2021-12-14 00:52:28 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[69]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:28 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[69]/td//i[contains(@class,"edit")] found." 2021-12-14 00:52:28 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[69]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:52:28 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[69]/td//i[contains(@class,"edit")]" 2021-12-14 00:52:28 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[69]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:52:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:52:28 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:28 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:28 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:52:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:52:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:52:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:29 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:29 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:52:29 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:29 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:52:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:52:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:31 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:52:31 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:31 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:52:31 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:52:31 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:52:31 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:52:31 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:52:31 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:31 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:52:31 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:52:31 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:52:31 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:52:31 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:52:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:52:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:52:31 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:31 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:52:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:52:31 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:52:31 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:31 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:52:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:52:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:52:31 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:31 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:52:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:52:31 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:52:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:52:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:52:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:52:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:52:31 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:52:31 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:52:32 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:52:32 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:52:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:52:38 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:52:38 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:52:38 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[70]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:52:38 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[70]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:38 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[70]/td//i[contains(@class,"edit")] found." 2021-12-14 00:52:38 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[70]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:38 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[70]/td//i[contains(@class,"edit")] found." 2021-12-14 00:52:38 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[70]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:52:38 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[70]/td//i[contains(@class,"edit")]" 2021-12-14 00:52:39 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[70]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:52:39 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:52:39 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:39 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:39 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:52:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:39 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:39 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:39 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:39 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:52:39 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:39 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:52:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:39 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:39 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:39 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:39 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:52:39 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:39 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:52:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:52:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:41 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:52:41 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:41 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:52:41 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:52:41 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:52:41 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:52:41 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:52:41 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:41 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:52:41 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:52:41 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:52:41 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:52:41 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:52:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:52:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:52:41 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:41 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:52:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:52:41 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:52:41 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:41 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:52:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:52:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:52:42 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:42 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:52:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:52:42 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:52:42 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:52:42 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:52:42 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:42 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:52:42 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:52:42 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:52:42 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:52:42 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:52:42 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:52:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:52:49 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:52:49 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:52:49 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[71]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:52:49 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[71]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:49 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[71]/td//i[contains(@class,"edit")] found." 2021-12-14 00:52:49 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[71]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:49 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[71]/td//i[contains(@class,"edit")] found." 2021-12-14 00:52:49 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[71]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:52:49 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[71]/td//i[contains(@class,"edit")]" 2021-12-14 00:52:49 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[71]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:52:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:52:49 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:52:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:52:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:49 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:49 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:52:49 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:49 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:52:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:49 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:49 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:52:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:52:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:52:50 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:50 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:52:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:52:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:52:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:52:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:52:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:52:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:52:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:52:52 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:52 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:52:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:52:52 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:52:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:52:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:52:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:52:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:52:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:52:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:52:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:52:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:52 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:52:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:52:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:52:52 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:52 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:52:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:52:52 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:52:52 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:52:52 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:52:52 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:52:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:52:52 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:52:52 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:52:53 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:52:53 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:52:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:52:59 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:52:59 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:52:59 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[72]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:52:59 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[72]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:52:59 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[72]/td//i[contains(@class,"edit")] found." 2021-12-14 00:52:59 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[72]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:52:59 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[72]/td//i[contains(@class,"edit")] found." 2021-12-14 00:52:59 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[72]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:52:59 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[72]/td//i[contains(@class,"edit")]" 2021-12-14 00:53:00 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[72]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:53:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:53:00 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:00 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:00 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:53:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:53:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:53:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:53:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:53:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:53:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:02 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:53:02 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:02 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:53:02 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:53:02 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:53:02 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:53:02 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:53:02 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:02 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:53:02 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:53:02 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:53:02 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:53:02 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:53:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:53:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:53:03 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:03 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:53:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:53:03 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:53:03 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:03 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:53:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:53:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:53:03 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:03 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:53:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:53:03 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:53:03 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:53:03 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:53:03 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:03 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:53:03 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:53:03 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:53:03 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:53:03 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:53:03 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:53:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:53:11 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:53:11 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:53:11 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[73]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:53:11 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[73]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:11 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[73]/td//i[contains(@class,"edit")] found." 2021-12-14 00:53:11 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[73]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:11 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[73]/td//i[contains(@class,"edit")] found." 2021-12-14 00:53:11 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[73]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:53:11 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[73]/td//i[contains(@class,"edit")]" 2021-12-14 00:53:12 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[73]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:53:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:53:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:53:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:53:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:53:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:53:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:53:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:53:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:53:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:53:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:53:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:53:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:53:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:53:14 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:14 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:53:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:53:15 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:53:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:53:15 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:53:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:53:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:53:15 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:15 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:53:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:53:15 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:53:15 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:15 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:53:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:53:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:53:15 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:15 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:53:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:53:15 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:53:15 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:53:15 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:53:15 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:15 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:53:15 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:53:15 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:53:15 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:53:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:53:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:53:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:53:22 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:53:22 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:53:22 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[74]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:53:22 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[74]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:22 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[74]/td//i[contains(@class,"edit")] found." 2021-12-14 00:53:22 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[74]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:22 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[74]/td//i[contains(@class,"edit")] found." 2021-12-14 00:53:22 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[74]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:53:22 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[74]/td//i[contains(@class,"edit")]" 2021-12-14 00:53:22 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[74]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:53:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:53:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:53:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:53:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:53:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:53:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:53:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:53:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:53:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:53:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:53:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:53:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:53:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:53:25 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:25 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:53:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:53:25 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:53:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:53:25 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:53:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:53:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:53:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:53:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:53:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:53:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:53:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:53:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:53:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:53:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:53:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:53:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:53:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:53:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:53:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:53:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:53:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:53:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:53:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:53:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:53:33 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:53:33 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:53:33 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[75]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:53:33 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[75]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:33 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[75]/td//i[contains(@class,"edit")] found." 2021-12-14 00:53:33 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[75]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:33 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[75]/td//i[contains(@class,"edit")] found." 2021-12-14 00:53:33 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[75]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:53:33 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[75]/td//i[contains(@class,"edit")]" 2021-12-14 00:53:33 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[75]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:53:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:53:33 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:33 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:33 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:53:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:53:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:33 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:53:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:53:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:53:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:53:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:36 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:53:36 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:36 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:53:36 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:53:36 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:53:36 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:53:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:53:36 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:36 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:53:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:53:36 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:53:36 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:53:36 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:53:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:53:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:53:36 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:36 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:53:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:53:36 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:53:36 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:36 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:53:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:53:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:53:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:53:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:53:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:53:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:53:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:53:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:53:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:53:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:53:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:53:37 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:53:37 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:53:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:53:43 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:53:43 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:53:43 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[76]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:53:43 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[76]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:43 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[76]/td//i[contains(@class,"edit")] found." 2021-12-14 00:53:43 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[76]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:43 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[76]/td//i[contains(@class,"edit")] found." 2021-12-14 00:53:43 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[76]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:53:43 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[76]/td//i[contains(@class,"edit")]" 2021-12-14 00:53:44 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[76]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:53:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:53:44 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:44 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:44 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:53:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:53:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:53:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:53:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:53:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:53:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:47 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:53:47 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:47 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:53:47 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:53:47 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:53:47 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:53:47 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:53:47 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:47 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:53:47 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:53:47 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:53:47 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:53:47 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:53:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:53:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:53:48 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:48 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:53:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:53:48 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:53:48 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:48 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:53:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:53:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:53:48 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:48 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:53:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:53:48 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:53:48 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:53:48 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:53:48 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:48 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:53:48 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:53:48 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:53:48 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:53:48 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:53:48 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:53:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:53:55 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:53:55 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:53:55 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[77]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:53:55 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[77]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:55 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[77]/td//i[contains(@class,"edit")] found." 2021-12-14 00:53:55 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[77]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:55 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[77]/td//i[contains(@class,"edit")] found." 2021-12-14 00:53:55 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[77]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:53:55 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[77]/td//i[contains(@class,"edit")]" 2021-12-14 00:53:56 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[77]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:53:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:53:56 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:56 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:56 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:53:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:53:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:53:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:53:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:53:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:53:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:53:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:53:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:53:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:58 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:53:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:58 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:53:58 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:53:58 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:53:58 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:53:58 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:53:58 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:58 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:53:58 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:53:58 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:53:58 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:53:58 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:53:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:53:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:53:58 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:58 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:53:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:53:58 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:53:58 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:58 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:53:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:53:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:53:58 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:58 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:53:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:53:58 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:53:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:53:59 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:53:59 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:53:59 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:53:59 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:53:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:53:59 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:53:59 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:53:59 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:53:59 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:54:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:54:06 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:54:06 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:54:06 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[78]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:54:06 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[78]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:06 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[78]/td//i[contains(@class,"edit")] found." 2021-12-14 00:54:06 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[78]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:06 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[78]/td//i[contains(@class,"edit")] found." 2021-12-14 00:54:06 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[78]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:54:06 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[78]/td//i[contains(@class,"edit")]" 2021-12-14 00:54:06 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[78]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:54:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:54:06 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:06 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:06 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:54:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:54:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:54:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:54:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:54:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:54:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:54:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:54:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:54:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:54:08 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:54:08 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:54:08 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:08 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:54:08 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:54:08 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:54:08 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:54:08 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:54:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:54:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:54:08 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:08 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:54:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:54:08 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:54:08 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:08 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:54:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:54:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:54:09 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:09 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:54:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:54:09 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:54:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:54:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:54:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:54:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:54:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:54:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:54:09 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:54:09 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:54:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:54:16 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:54:16 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:54:16 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[79]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:54:16 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[79]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:16 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[79]/td//i[contains(@class,"edit")] found." 2021-12-14 00:54:16 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[79]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:16 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[79]/td//i[contains(@class,"edit")] found." 2021-12-14 00:54:16 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[79]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:54:16 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[79]/td//i[contains(@class,"edit")]" 2021-12-14 00:54:16 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[79]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:54:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:54:16 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:16 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:16 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:16 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:16 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:54:16 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:16 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:16 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:16 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:16 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:16 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:54:16 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:16 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:54:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:16 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:16 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:54:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:54:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:54:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:19 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:54:19 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:19 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:54:19 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:54:19 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:54:19 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:54:19 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:54:19 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:19 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:54:19 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:54:19 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:54:19 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:54:19 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:54:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:54:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:54:19 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:19 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:54:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:54:19 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:54:19 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:19 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:54:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:54:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:54:19 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:19 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:54:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:54:19 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:54:19 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:54:19 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:54:19 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:19 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:54:19 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:54:19 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:54:19 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:54:20 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:54:20 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:54:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:54:26 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:54:26 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:54:26 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[80]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:54:26 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[80]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:26 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[80]/td//i[contains(@class,"edit")] found." 2021-12-14 00:54:26 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[80]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:26 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[80]/td//i[contains(@class,"edit")] found." 2021-12-14 00:54:26 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[80]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:54:26 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[80]/td//i[contains(@class,"edit")]" 2021-12-14 00:54:26 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[80]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:54:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:54:26 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:26 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:26 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:54:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:26 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:26 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:26 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:26 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:54:26 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:54:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:27 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:27 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:27 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:27 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:54:27 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:54:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:54:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:29 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:54:29 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:29 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:54:29 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:54:29 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:54:29 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:54:29 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:54:29 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:29 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:54:29 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:54:29 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:54:29 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:54:29 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:54:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:54:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:54:29 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:29 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:54:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:54:29 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:54:29 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:29 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:54:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:54:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:54:29 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:29 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:54:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:54:29 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:54:30 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:54:30 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:54:30 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:30 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:54:30 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:54:30 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:54:30 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:54:30 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:54:30 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:54:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:54:37 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:54:37 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:54:37 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[81]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:54:37 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[81]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:37 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[81]/td//i[contains(@class,"edit")] found." 2021-12-14 00:54:37 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[81]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:37 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[81]/td//i[contains(@class,"edit")] found." 2021-12-14 00:54:37 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[81]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:54:37 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[81]/td//i[contains(@class,"edit")]" 2021-12-14 00:54:37 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[81]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:54:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:54:37 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:37 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:38 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:54:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:38 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:38 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:38 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:38 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:54:38 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:54:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:38 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:38 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:38 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:38 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:54:38 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:54:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:54:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:40 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:54:40 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:40 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:54:40 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:54:40 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:54:40 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:54:40 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:54:40 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:40 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:54:40 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:54:40 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:54:40 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:54:40 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:54:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:54:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:54:40 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:40 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:54:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:54:40 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:54:40 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:40 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:54:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:54:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:54:41 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:41 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:54:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:54:41 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:54:41 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:54:41 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:54:41 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:41 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:54:41 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:54:41 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:54:41 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:54:41 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:54:41 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:54:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:54:48 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:54:48 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:54:48 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[82]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:54:48 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[82]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:48 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[82]/td//i[contains(@class,"edit")] found." 2021-12-14 00:54:48 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[82]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:48 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[82]/td//i[contains(@class,"edit")] found." 2021-12-14 00:54:48 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[82]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:54:48 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[82]/td//i[contains(@class,"edit")]" 2021-12-14 00:54:48 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[82]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:54:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:54:48 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:48 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:48 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:54:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:54:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:48 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:48 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:48 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:48 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:54:48 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:48 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:54:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:48 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:48 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:48 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:54:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:54:48 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:54:48 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:48 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:54:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:54:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:51 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:54:51 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:51 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:54:51 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:54:51 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:54:51 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:54:51 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:54:51 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:51 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:54:51 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:54:51 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:54:51 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:54:51 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:54:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:54:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:54:51 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:51 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:54:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:54:51 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:54:51 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:51 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:54:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:54:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:54:51 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:51 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:54:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:54:51 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:54:51 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:54:51 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:54:51 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:54:51 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:54:51 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:54:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:54:51 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:54:51 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:54:52 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:54:52 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:55:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:55:00 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:55:00 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:55:00 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[83]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:55:00 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[83]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:00 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[83]/td//i[contains(@class,"edit")] found." 2021-12-14 00:55:00 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[83]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:00 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[83]/td//i[contains(@class,"edit")] found." 2021-12-14 00:55:00 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[83]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:55:00 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[83]/td//i[contains(@class,"edit")]" 2021-12-14 00:55:00 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[83]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:55:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:55:00 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:01 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:01 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:55:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:01 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:01 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:55:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:55:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:01 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:01 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:55:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:55:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:55:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:03 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:55:03 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:03 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:55:03 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:55:03 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:55:03 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:55:03 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:55:03 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:03 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:55:03 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:55:03 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:55:03 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:55:03 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:55:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:55:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:55:03 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:03 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:55:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:55:03 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:55:03 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:03 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:55:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:55:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:55:04 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:04 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:55:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:55:04 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:55:04 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:55:04 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:55:04 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:04 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:55:04 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:55:04 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:55:04 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:55:04 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:55:04 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:55:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:55:11 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:55:11 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:55:11 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[84]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:55:11 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[84]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:11 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[84]/td//i[contains(@class,"edit")] found." 2021-12-14 00:55:11 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[84]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:11 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[84]/td//i[contains(@class,"edit")] found." 2021-12-14 00:55:11 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[84]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:55:11 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[84]/td//i[contains(@class,"edit")]" 2021-12-14 00:55:11 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[84]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:55:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:55:11 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:55:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:55:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:55:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:55:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:55:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:55:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:55:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:55:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:55:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:55:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:55:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:55:14 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:14 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:55:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:55:14 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:55:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:55:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:55:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:55:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:55:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:55:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:55:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:55:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:15 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:55:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:55:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:55:15 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:15 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:55:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:55:15 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:55:15 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:55:15 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:55:15 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:15 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:55:15 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:55:15 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:55:15 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:55:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:55:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:55:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:55:22 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:55:22 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:55:22 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[85]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:55:22 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[85]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:22 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[85]/td//i[contains(@class,"edit")] found." 2021-12-14 00:55:22 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[85]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:22 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[85]/td//i[contains(@class,"edit")] found." 2021-12-14 00:55:22 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[85]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:55:22 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[85]/td//i[contains(@class,"edit")]" 2021-12-14 00:55:22 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[85]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:55:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:55:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:55:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:55:24 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:55:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:24 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:24 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:24 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:24 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:55:24 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:55:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:55:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:55:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:55:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:55:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:55:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:55:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:55:26 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:26 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:55:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:55:26 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:55:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:55:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:55:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:55:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:55:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:55:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:55:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:55:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:55:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:55:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:55:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:55:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:55:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:55:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:55:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:55:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:55:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:55:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:55:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:55:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:55:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:55:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:55:34 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:55:34 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:55:34 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[86]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:55:34 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[86]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:34 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[86]/td//i[contains(@class,"edit")] found." 2021-12-14 00:55:34 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[86]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:34 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[86]/td//i[contains(@class,"edit")] found." 2021-12-14 00:55:34 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[86]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:55:34 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[86]/td//i[contains(@class,"edit")]" 2021-12-14 00:55:34 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[86]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:55:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:55:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:55:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:55:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:55:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:55:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:55:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:55:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:55:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:55:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:55:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:55:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:55:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:55:37 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:37 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:55:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:55:37 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:55:37 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:55:37 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:55:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:55:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:55:37 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:37 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:55:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:55:37 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:55:37 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:37 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:55:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:55:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:55:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:55:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:55:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:55:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:55:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:55:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:55:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:55:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:55:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:55:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:55:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:55:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:55:44 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:55:44 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:55:44 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[87]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:55:44 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[87]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:44 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[87]/td//i[contains(@class,"edit")] found." 2021-12-14 00:55:44 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[87]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:44 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[87]/td//i[contains(@class,"edit")] found." 2021-12-14 00:55:44 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[87]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:55:44 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[87]/td//i[contains(@class,"edit")]" 2021-12-14 00:55:45 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[87]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:55:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:55:45 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:45 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:45 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:55:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:45 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:45 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:45 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:45 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:55:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:55:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:45 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:45 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:45 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:45 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:55:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:55:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:55:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:47 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:55:47 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:47 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:55:47 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:55:47 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:55:47 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:55:47 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:55:47 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:47 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:55:47 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:55:47 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:55:47 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:55:47 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:55:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:55:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:55:47 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:47 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:55:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:55:47 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:55:47 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:47 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:55:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:55:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:55:47 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:55:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:55:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:55:47 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:55:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:55:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:55:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:55:47 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:55:47 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:55:48 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:55:48 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:55:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:55:54 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:55:54 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:55:54 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[88]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:55:54 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[88]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:54 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[88]/td//i[contains(@class,"edit")] found." 2021-12-14 00:55:54 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[88]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:54 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[88]/td//i[contains(@class,"edit")] found." 2021-12-14 00:55:54 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[88]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:55:54 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[88]/td//i[contains(@class,"edit")]" 2021-12-14 00:55:55 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[88]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:55:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:55:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:55:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:55:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:55:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:55:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:55:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:55:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:55:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:55:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:55:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:57 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:55:57 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:57 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:55:57 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:55:57 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:55:57 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:55:57 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:55:57 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:57 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:55:57 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:55:57 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:55:57 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:55:57 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:55:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:55:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:55:57 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:57 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:55:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:55:57 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:55:57 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:57 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:55:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:55:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:55:57 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:57 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:55:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:55:57 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:55:57 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:55:57 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:55:57 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:55:57 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:55:57 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:55:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:55:57 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:55:57 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:55:58 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:55:58 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:56:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:56:04 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:56:04 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:56:04 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[89]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:56:04 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[89]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:04 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[89]/td//i[contains(@class,"edit")] found." 2021-12-14 00:56:04 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[89]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:04 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[89]/td//i[contains(@class,"edit")] found." 2021-12-14 00:56:04 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[89]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:56:04 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[89]/td//i[contains(@class,"edit")]" 2021-12-14 00:56:05 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[89]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:56:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:56:05 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:05 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:05 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:56:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:05 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:05 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:05 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:05 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:56:05 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:05 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:56:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:05 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:05 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:05 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:05 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:56:05 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:05 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:56:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:56:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:07 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:56:07 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:07 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:56:07 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:56:07 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:56:07 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:56:07 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:56:07 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:07 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:56:07 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:56:07 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:56:07 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:56:07 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:56:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:56:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:56:07 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:07 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:56:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:56:07 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:56:07 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:07 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:56:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:56:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:56:07 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:07 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:56:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:56:07 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:56:07 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:56:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:56:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:56:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:56:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:56:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:56:08 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:56:08 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:56:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:56:15 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:56:15 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:56:15 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[90]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:56:15 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[90]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:15 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[90]/td//i[contains(@class,"edit")] found." 2021-12-14 00:56:15 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[90]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:15 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[90]/td//i[contains(@class,"edit")] found." 2021-12-14 00:56:15 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[90]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:56:15 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[90]/td//i[contains(@class,"edit")]" 2021-12-14 00:56:15 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[90]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:56:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:56:15 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:15 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:15 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:56:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:15 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:15 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:15 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:15 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:56:15 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:15 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:56:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:15 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:15 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:15 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:15 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:56:15 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:15 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:56:17 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:56:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:17 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:56:17 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:17 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:56:17 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:56:17 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:56:17 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:56:17 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:56:17 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:17 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:56:17 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:56:17 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:56:17 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:56:17 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:56:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:56:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:56:17 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:17 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:56:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:56:17 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:56:17 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:17 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:56:18 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:56:18 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:18 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:56:18 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:18 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:56:18 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:56:18 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:56:18 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:56:18 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:56:18 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:18 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:56:18 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:18 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:56:18 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:56:18 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:56:18 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:56:18 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:56:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:56:25 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:56:25 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:56:25 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[91]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:56:25 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[91]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:25 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[91]/td//i[contains(@class,"edit")] found." 2021-12-14 00:56:25 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[91]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:25 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[91]/td//i[contains(@class,"edit")] found." 2021-12-14 00:56:25 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[91]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:56:25 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[91]/td//i[contains(@class,"edit")]" 2021-12-14 00:56:25 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[91]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:56:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:56:25 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:25 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:25 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:56:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:25 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:25 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:25 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:25 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:56:25 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:25 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:56:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:25 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:25 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:25 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:25 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:56:25 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:25 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:56:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:56:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:27 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:56:27 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:27 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:56:27 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:56:27 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:56:27 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:56:27 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:56:27 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:27 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:56:27 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:56:27 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:56:27 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:56:27 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:56:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:56:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:56:27 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:27 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:56:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:56:27 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:56:27 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:27 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:56:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:56:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:56:27 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:27 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:56:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:56:27 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:56:28 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:56:28 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:56:28 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:28 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:56:28 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:28 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:56:28 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:56:28 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:56:28 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:56:28 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:56:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:56:34 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:56:34 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:56:34 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[92]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:56:34 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[92]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:34 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[92]/td//i[contains(@class,"edit")] found." 2021-12-14 00:56:34 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[92]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:35 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[92]/td//i[contains(@class,"edit")] found." 2021-12-14 00:56:35 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[92]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:56:35 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[92]/td//i[contains(@class,"edit")]" 2021-12-14 00:56:35 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[92]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:56:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:56:35 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:35 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:35 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:56:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:56:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:56:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:56:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:56:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:56:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:56:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:56:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:56:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:56:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:56:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:56:37 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:37 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:56:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:56:37 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:56:37 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:56:37 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:56:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:56:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:56:37 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:37 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:56:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:56:37 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:56:37 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:37 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:56:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:56:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:56:38 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:38 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:56:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:56:38 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:56:38 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:56:38 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:56:38 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:38 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:56:38 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:56:38 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:56:38 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:56:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:56:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:56:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:56:45 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:56:45 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:56:45 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[93]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:56:45 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[93]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:45 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[93]/td//i[contains(@class,"edit")] found." 2021-12-14 00:56:45 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[93]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:45 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[93]/td//i[contains(@class,"edit")] found." 2021-12-14 00:56:45 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[93]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:56:45 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[93]/td//i[contains(@class,"edit")]" 2021-12-14 00:56:45 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[93]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:56:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:56:45 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:45 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:45 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:56:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:45 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:45 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:45 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:45 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:56:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:56:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:45 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:45 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:45 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:45 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:56:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:56:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:56:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:48 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:56:48 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:48 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:56:48 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:56:48 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:56:48 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:56:48 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:56:48 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:48 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:56:48 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:56:48 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:56:48 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:56:48 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:56:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:56:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:56:48 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:48 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:56:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:56:48 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:56:48 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:48 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:56:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:56:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:56:48 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:48 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:56:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:56:48 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:56:48 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:56:48 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:56:48 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:48 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:56:48 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:56:49 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:56:49 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:56:49 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:56:49 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:56:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:56:56 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:56:56 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:56:56 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[94]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:56:56 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[94]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:56 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[94]/td//i[contains(@class,"edit")] found." 2021-12-14 00:56:56 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[94]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:56 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[94]/td//i[contains(@class,"edit")] found." 2021-12-14 00:56:56 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[94]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:56:56 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[94]/td//i[contains(@class,"edit")]" 2021-12-14 00:56:56 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[94]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:56:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:56:56 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:57 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:57 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:56:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:56:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:57 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:57 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:57 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:57 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:56:57 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:57 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:56:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:57 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:57 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:57 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:56:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:56:57 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:56:57 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:57 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:56:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:56:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:56:59 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:56:59 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:59 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:56:59 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:56:59 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:56:59 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:56:59 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:56:59 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:56:59 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:56:59 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:57:00 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:57:00 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:57:00 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:57:00 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:57:00 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:00 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:57:00 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:00 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:57:00 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:57:00 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:57:00 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:00 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:57:00 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:57:00 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:00 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:57:00 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:00 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:57:00 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:57:00 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:57:00 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:57:00 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:57:00 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:00 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:57:00 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:57:00 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:57:00 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:57:01 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:57:01 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:57:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:57:07 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:57:07 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:57:07 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[95]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:57:07 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[95]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:07 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[95]/td//i[contains(@class,"edit")] found." 2021-12-14 00:57:07 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[95]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:07 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[95]/td//i[contains(@class,"edit")] found." 2021-12-14 00:57:07 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[95]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:57:07 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[95]/td//i[contains(@class,"edit")]" 2021-12-14 00:57:08 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[95]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:57:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:57:08 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:08 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:08 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:09 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:57:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:09 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:10 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:10 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:10 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:57:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:10 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:57:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:10 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:10 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:10 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:10 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:57:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:10 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:57:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:57:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:13 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:57:13 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:13 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:57:13 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:57:13 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:57:13 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:57:13 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:57:13 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:13 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:57:13 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:57:13 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:57:13 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:57:13 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:57:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:57:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:57:13 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:13 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:57:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:57:13 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:57:13 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:13 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:57:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:57:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:57:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:14 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:57:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:57:14 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:57:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:57:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:57:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:14 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:57:14 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:57:14 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:57:14 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:57:14 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:57:14 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:57:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:57:22 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:57:22 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:57:22 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[96]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:57:22 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[96]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:22 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[96]/td//i[contains(@class,"edit")] found." 2021-12-14 00:57:22 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[96]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:23 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[96]/td//i[contains(@class,"edit")] found." 2021-12-14 00:57:23 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[96]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:57:23 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[96]/td//i[contains(@class,"edit")]" 2021-12-14 00:57:23 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[96]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:57:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:57:23 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:57:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:57:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:57:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:57:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:57:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:57:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:57:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:57:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:57:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:57:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:57:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:57:25 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:25 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:57:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:57:25 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:57:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:57:25 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:57:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:57:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:57:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:57:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:57:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:57:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:57:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:57:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:57:25 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:25 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:57:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:57:25 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:57:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:57:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:57:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:57:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:57:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:57:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:57:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:57:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:57:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:57:34 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:57:34 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:57:34 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[97]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:57:34 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[97]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:34 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[97]/td//i[contains(@class,"edit")] found." 2021-12-14 00:57:34 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[97]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:34 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[97]/td//i[contains(@class,"edit")] found." 2021-12-14 00:57:34 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[97]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:57:34 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[97]/td//i[contains(@class,"edit")]" 2021-12-14 00:57:34 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[97]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:57:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:57:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:57:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:57:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:57:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:57:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:57:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:57:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:36 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:57:36 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:36 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:57:36 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:57:36 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:57:36 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:57:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:57:36 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:36 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:57:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:57:37 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:57:37 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:57:37 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:57:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:57:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:57:37 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:37 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:57:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:57:37 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:57:37 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:37 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:57:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:57:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:57:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:57:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:57:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:57:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:57:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:57:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:57:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:57:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:57:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:57:37 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:57:37 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:57:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:57:44 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:57:44 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:57:44 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[98]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:57:44 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[98]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:44 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[98]/td//i[contains(@class,"edit")] found." 2021-12-14 00:57:44 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[98]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:44 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[98]/td//i[contains(@class,"edit")] found." 2021-12-14 00:57:44 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[98]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:57:44 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[98]/td//i[contains(@class,"edit")]" 2021-12-14 00:57:44 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[98]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:57:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:57:44 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:44 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:44 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:57:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:57:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:57:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:45 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:45 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:45 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:45 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:57:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:57:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:57:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:47 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:57:47 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:47 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:57:47 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:57:47 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:57:47 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:57:47 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:57:47 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:47 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:57:47 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:57:47 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:57:47 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:57:47 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:57:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:57:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:57:47 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:47 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:57:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:57:47 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:57:47 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:47 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:57:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:57:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:57:47 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:57:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:57:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:57:47 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:57:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:57:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:57:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:57:48 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:57:48 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:57:48 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:57:48 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:57:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:57:55 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:57:55 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:57:55 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[99]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:57:55 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[99]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:55 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[99]/td//i[contains(@class,"edit")] found." 2021-12-14 00:57:55 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[99]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:55 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[99]/td//i[contains(@class,"edit")] found." 2021-12-14 00:57:55 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[99]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:57:55 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[99]/td//i[contains(@class,"edit")]" 2021-12-14 00:57:55 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[99]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:57:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:57:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:57:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:57:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:57:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:57:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:57:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:57:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:57:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:57:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:57:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:58 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:57:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:58 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:57:58 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:57:58 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:57:58 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:57:58 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:57:58 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:58 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:57:58 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:57:58 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:57:58 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:57:58 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:57:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:57:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:57:58 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:58 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:57:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:57:58 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:57:58 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:58 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:57:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:57:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:57:58 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:58 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:57:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:57:58 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:57:58 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:57:58 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:57:58 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:57:58 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:57:58 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:57:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:57:58 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:57:58 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:57:59 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:57:59 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:58:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:58:05 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:58:05 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:58:05 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[100]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:58:05 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[100]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:06 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[100]/td//i[contains(@class,"edit")] found." 2021-12-14 00:58:06 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[100]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:06 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[100]/td//i[contains(@class,"edit")] found." 2021-12-14 00:58:06 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[100]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:58:06 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[100]/td//i[contains(@class,"edit")]" 2021-12-14 00:58:06 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[100]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:58:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:58:06 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:06 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:06 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:58:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:58:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:58:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:58:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:58:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:58:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:58:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:58:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:58:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:58:08 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:58:08 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:58:08 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:08 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:58:08 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:58:08 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:58:08 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:58:08 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:58:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:58:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:58:08 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:58:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:58:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:58:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:58:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:58:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:58:09 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:09 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:58:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:58:09 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:58:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:58:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:58:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:58:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:58:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:58:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:58:09 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:58:09 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:58:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:58:16 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:58:16 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:58:16 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[101]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:58:16 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[101]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:16 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[101]/td//i[contains(@class,"edit")] found." 2021-12-14 00:58:16 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[101]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:16 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[101]/td//i[contains(@class,"edit")] found." 2021-12-14 00:58:16 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[101]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:58:16 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[101]/td//i[contains(@class,"edit")]" 2021-12-14 00:58:16 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[101]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:58:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:58:16 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:16 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:16 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:16 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:16 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:58:16 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:16 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:16 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:16 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:16 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:16 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:58:16 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:16 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:58:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:16 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:16 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:16 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:16 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:58:16 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:16 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:58:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:58:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:18 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:58:18 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:18 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:58:18 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:58:18 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:58:18 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:58:18 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:58:19 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:19 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:58:19 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:58:19 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:58:19 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:58:19 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:58:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:58:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:58:19 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:19 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:58:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:58:19 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:58:19 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:19 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:58:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:58:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:58:19 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:19 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:58:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:58:19 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:58:19 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:58:19 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:58:19 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:19 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:58:19 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:58:19 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:58:19 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:58:19 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:58:19 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:58:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:58:26 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:58:26 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:58:26 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[102]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:58:26 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[102]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:27 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[102]/td//i[contains(@class,"edit")] found." 2021-12-14 00:58:27 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[102]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:27 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[102]/td//i[contains(@class,"edit")] found." 2021-12-14 00:58:27 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[102]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:58:27 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[102]/td//i[contains(@class,"edit")]" 2021-12-14 00:58:27 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[102]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:58:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:58:27 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:27 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:27 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:58:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:27 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:27 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:27 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:27 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:58:27 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:58:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:27 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:27 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:27 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:27 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:58:27 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:58:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:58:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:29 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:58:29 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:29 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:58:29 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:58:29 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:58:30 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:58:30 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:58:30 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:30 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:58:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:58:30 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:58:30 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:58:30 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:58:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:58:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:58:30 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:30 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:58:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:58:30 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:58:30 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:30 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:58:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:58:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:58:30 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:30 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:58:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:58:30 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:58:30 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:58:30 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:58:30 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:30 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:58:30 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:58:30 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:58:30 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:58:30 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:58:30 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:58:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:58:37 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:58:37 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:58:37 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[103]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:58:37 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[103]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:37 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[103]/td//i[contains(@class,"edit")] found." 2021-12-14 00:58:37 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[103]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:37 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[103]/td//i[contains(@class,"edit")] found." 2021-12-14 00:58:37 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[103]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:58:37 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[103]/td//i[contains(@class,"edit")]" 2021-12-14 00:58:37 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[103]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:58:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:58:37 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:38 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:38 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:58:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:38 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:38 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:38 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:38 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:58:38 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:58:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:38 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:38 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:38 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:38 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:58:38 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:58:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:58:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:40 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:58:40 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:40 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:58:40 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:58:40 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:58:40 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:58:40 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:58:40 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:40 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 00:58:40 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 00:58:40 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 00:58:40 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:58:40 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:58:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:58:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:58:40 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:40 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:58:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:58:40 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:58:40 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:40 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:58:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:58:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:58:41 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:41 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:58:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:58:41 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:58:41 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:58:41 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:58:41 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:41 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:58:41 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:58:41 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:58:41 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:58:41 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:58:41 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:58:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:58:49 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:58:49 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:58:49 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[104]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:58:49 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[104]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:49 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[104]/td//i[contains(@class,"edit")] found." 2021-12-14 00:58:49 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[104]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:49 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[104]/td//i[contains(@class,"edit")] found." 2021-12-14 00:58:49 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[104]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:58:49 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[104]/td//i[contains(@class,"edit")]" 2021-12-14 00:58:49 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[104]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:58:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:58:49 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:58:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:58:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:49 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:49 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:58:49 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:49 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:58:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:49 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:49 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:58:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:58:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:58:49 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:49 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:58:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:58:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:58:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:58:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:58:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:58:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:58:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:58:52 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:52 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:58:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:58:52 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:58:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:58:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:58:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:58:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:58:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:58:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:58:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:58:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:52 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:58:53 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:58:53 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:58:53 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:53 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:58:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:58:53 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:58:53 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:58:53 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:58:53 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:58:53 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:58:53 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:58:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:58:53 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:58:53 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:58:53 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:58:53 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:59:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:59:03 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:59:03 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:59:03 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[105]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:59:03 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[105]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:03 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[105]/td//i[contains(@class,"edit")] found." 2021-12-14 00:59:03 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[105]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:03 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[105]/td//i[contains(@class,"edit")] found." 2021-12-14 00:59:03 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[105]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:59:03 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[105]/td//i[contains(@class,"edit")]" 2021-12-14 00:59:04 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[105]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:59:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:59:04 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:04 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:04 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:59:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:59:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:59:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:59:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:59:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:59:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:59:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:59:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:59:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:59:07 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:59:07 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:59:07 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:07 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:59:07 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:59:07 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:59:07 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:59:07 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:59:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:59:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:59:07 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:07 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:59:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:59:07 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:59:07 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:07 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:59:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:59:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:59:07 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:07 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:59:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:59:07 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:59:07 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:59:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:59:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:59:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:59:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:59:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:59:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:59:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:59:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:59:14 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:59:14 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:59:14 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[106]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:59:14 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[106]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:14 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[106]/td//i[contains(@class,"edit")] found." 2021-12-14 00:59:14 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[106]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:14 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[106]/td//i[contains(@class,"edit")] found." 2021-12-14 00:59:14 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[106]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:59:14 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[106]/td//i[contains(@class,"edit")]" 2021-12-14 00:59:14 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[106]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:59:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:59:14 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:14 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:14 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:14 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:14 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:59:14 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:14 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:14 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:14 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:14 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:14 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:59:14 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:14 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:59:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:14 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:14 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:15 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:15 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:59:15 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:15 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:59:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:59:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:16 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:59:16 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:16 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:59:16 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:59:16 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:59:17 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:59:17 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:59:17 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:17 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:59:17 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:59:17 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:59:17 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:59:17 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:59:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:59:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:59:17 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:17 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:59:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:59:17 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:59:17 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:17 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:59:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:59:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:59:17 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:17 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:59:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:59:17 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:59:17 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:59:17 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:59:17 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:17 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:59:17 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:59:17 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:59:17 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:59:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:59:17 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:59:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:59:24 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:59:24 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:59:24 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[107]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:59:24 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[107]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:24 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[107]/td//i[contains(@class,"edit")] found." 2021-12-14 00:59:24 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[107]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:24 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[107]/td//i[contains(@class,"edit")] found." 2021-12-14 00:59:24 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[107]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:59:24 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[107]/td//i[contains(@class,"edit")]" 2021-12-14 00:59:24 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[107]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:59:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:59:24 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:24 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:24 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:24 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:24 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:59:24 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:24 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:24 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:24 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:25 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:25 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:59:25 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:25 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:59:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:25 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:25 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:25 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:25 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:59:25 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:25 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:59:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:59:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:27 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:59:27 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:27 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:59:27 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:59:27 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:59:27 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:59:27 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:59:27 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:27 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 00:59:27 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 00:59:27 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 00:59:27 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:59:27 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:59:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:59:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:59:27 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:27 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:59:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:59:27 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:59:27 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:27 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:59:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:59:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:59:27 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:27 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:59:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:59:27 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:59:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:59:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:59:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:59:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:59:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:59:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:59:28 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:59:28 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:59:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:59:35 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:59:35 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:59:35 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[108]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:59:35 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[108]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:35 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[108]/td//i[contains(@class,"edit")] found." 2021-12-14 00:59:35 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[108]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:35 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[108]/td//i[contains(@class,"edit")] found." 2021-12-14 00:59:35 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[108]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:59:35 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[108]/td//i[contains(@class,"edit")]" 2021-12-14 00:59:35 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[108]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:59:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:59:35 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:35 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:35 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:59:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:59:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:59:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:59:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:59:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:59:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:59:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:59:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:59:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:59:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:59:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:59:37 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:37 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 00:59:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 00:59:38 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 00:59:38 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:59:38 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:59:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:59:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:59:38 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:38 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:59:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:59:38 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:59:38 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:38 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:59:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:59:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:59:38 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:38 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:59:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:59:38 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:59:38 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:59:38 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:59:38 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:38 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:59:38 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:59:38 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:59:38 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:59:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:59:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:59:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:59:47 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:59:47 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:59:47 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[109]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:59:47 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[109]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:47 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[109]/td//i[contains(@class,"edit")] found." 2021-12-14 00:59:47 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[109]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:47 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[109]/td//i[contains(@class,"edit")] found." 2021-12-14 00:59:47 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[109]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:59:47 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[109]/td//i[contains(@class,"edit")]" 2021-12-14 00:59:47 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[109]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:59:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:59:47 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:47 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:47 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:47 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:59:47 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:47 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:47 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:47 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:47 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:59:47 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:47 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:59:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:47 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:47 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:47 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:47 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:59:47 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:47 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:59:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:59:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:49 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:59:49 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:49 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 00:59:49 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:59:49 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 00:59:49 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 00:59:49 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 00:59:49 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:49 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 00:59:49 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 00:59:50 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 00:59:50 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:59:50 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 00:59:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:59:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:59:50 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:50 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 00:59:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 00:59:50 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 00:59:50 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:50 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 00:59:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:59:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:59:50 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:50 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 00:59:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 00:59:50 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 00:59:50 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 00:59:50 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:59:50 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:50 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:59:50 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:59:50 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:59:50 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:59:50 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:59:50 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:59:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:59:57 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:59:57 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 00:59:57 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[110]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:59:57 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[110]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:57 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[110]/td//i[contains(@class,"edit")] found." 2021-12-14 00:59:57 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[110]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:57 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[110]/td//i[contains(@class,"edit")] found." 2021-12-14 00:59:57 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[110]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 00:59:57 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[110]/td//i[contains(@class,"edit")]" 2021-12-14 00:59:57 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[110]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 00:59:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:59:57 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:57 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:57 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:59:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:59:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:57 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:57 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:57 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:57 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:59:57 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:57 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:59:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:57 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:57 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:57 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 00:59:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 00:59:57 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 00:59:57 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:59:57 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 00:59:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 00:59:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:59:59 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 00:59:59 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:00 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:00:00 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:00:00 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:00:00 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:00:00 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:00:00 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:00 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:00:00 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:00:00 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:00:00 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:00:00 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:00:00 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:00:00 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:00 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:00:00 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:00 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:00:00 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:00:00 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:00:00 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:00 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:00:00 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:00:00 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:00 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:00:00 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:00 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:00:00 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:00:00 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:00:00 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:00:00 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:00:00 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:00 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:00:00 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:00:00 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:00:00 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:00:01 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:00:01 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:00:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:00:07 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:00:07 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:00:07 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[111]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:00:07 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[111]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:07 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[111]/td//i[contains(@class,"edit")] found." 2021-12-14 01:00:07 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[111]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:07 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[111]/td//i[contains(@class,"edit")] found." 2021-12-14 01:00:07 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[111]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:00:07 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[111]/td//i[contains(@class,"edit")]" 2021-12-14 01:00:08 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[111]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:00:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:00:08 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:08 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:08 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:08 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:08 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:00:08 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:08 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:08 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:08 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:08 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:08 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:00:08 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:08 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:00:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:08 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:08 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:08 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:08 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:00:08 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:08 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:00:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:00:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:10 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:00:10 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:10 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:00:10 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:00:10 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:00:10 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:00:10 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:00:10 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:10 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:00:10 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:00:10 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:00:10 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:00:10 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:00:10 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:00:10 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:11 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:00:11 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:11 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:00:11 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:00:11 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:00:11 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:11 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:00:11 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:00:11 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:11 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:00:11 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:11 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:00:11 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:00:11 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:00:11 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:00:11 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:00:11 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:11 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:00:11 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:00:11 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:00:11 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:00:11 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:00:11 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:00:18 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:00:18 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:00:18 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:00:18 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[112]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:00:18 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[112]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:18 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[112]/td//i[contains(@class,"edit")] found." 2021-12-14 01:00:18 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[112]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:18 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[112]/td//i[contains(@class,"edit")] found." 2021-12-14 01:00:18 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[112]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:00:18 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[112]/td//i[contains(@class,"edit")]" 2021-12-14 01:00:18 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[112]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:00:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:00:18 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:18 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:19 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:00:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:19 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:19 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:19 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:19 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:00:19 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:19 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:00:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:19 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:19 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:19 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:19 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:00:19 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:19 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:00:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:00:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:21 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:00:21 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:21 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:00:21 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:00:21 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:00:21 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:00:21 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:00:21 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:21 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:00:21 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:00:21 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:00:21 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:00:21 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:00:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:00:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:00:21 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:21 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:00:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:00:21 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:00:21 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:21 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:00:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:00:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:00:22 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:22 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:00:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:00:22 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:00:22 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:00:22 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:00:22 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:22 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:00:22 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:00:22 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:00:22 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:00:22 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:00:22 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:00:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:00:29 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:00:29 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:00:29 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[113]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:00:29 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[113]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:29 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[113]/td//i[contains(@class,"edit")] found." 2021-12-14 01:00:29 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[113]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:29 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[113]/td//i[contains(@class,"edit")] found." 2021-12-14 01:00:29 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[113]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:00:29 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[113]/td//i[contains(@class,"edit")]" 2021-12-14 01:00:29 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[113]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:00:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:00:29 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:29 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:29 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:00:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:29 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:29 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:00:29 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:29 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:00:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:29 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:29 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:00:29 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:29 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:00:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:00:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:00:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:00:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:00:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:00:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:00:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:00:32 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:32 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:00:32 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:00:32 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:00:32 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:00:32 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:00:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:00:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:00:32 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:32 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:00:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:00:32 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:00:32 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:32 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:00:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:00:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:00:32 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:32 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:00:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:00:32 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:00:32 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:00:32 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:00:32 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:32 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:00:32 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:32 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:00:32 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:00:32 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:00:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:00:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:00:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:00:40 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:00:40 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:00:40 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[114]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:00:40 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[114]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:40 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[114]/td//i[contains(@class,"edit")] found." 2021-12-14 01:00:40 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[114]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:40 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[114]/td//i[contains(@class,"edit")] found." 2021-12-14 01:00:40 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[114]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:00:40 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[114]/td//i[contains(@class,"edit")]" 2021-12-14 01:00:40 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[114]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:00:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:00:40 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:40 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:40 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:00:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:40 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:40 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:00:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:00:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:40 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:40 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:00:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:00:43 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:00:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:43 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:00:43 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:43 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:00:43 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:00:43 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:00:43 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:00:43 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:00:43 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:43 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:00:43 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:00:43 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:00:43 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:00:43 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:00:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:00:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:00:43 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:43 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:00:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:00:43 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:00:43 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:43 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:00:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:00:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:00:44 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:44 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:00:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:00:44 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:00:44 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:00:44 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:00:44 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:44 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:00:44 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:00:44 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:00:44 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:00:44 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:00:44 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:00:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:00:52 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:00:52 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:00:52 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[115]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:00:52 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[115]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:52 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[115]/td//i[contains(@class,"edit")] found." 2021-12-14 01:00:52 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[115]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:52 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[115]/td//i[contains(@class,"edit")] found." 2021-12-14 01:00:52 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[115]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:00:52 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[115]/td//i[contains(@class,"edit")]" 2021-12-14 01:00:52 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[115]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:00:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:00:52 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:52 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:52 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:00:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:00:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:52 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:52 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:52 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:52 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:00:52 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:00:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:00:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:00:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:00:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:00:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:00:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:55 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:00:55 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:55 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:00:55 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:00:55 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:00:55 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:00:55 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:00:55 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:55 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:00:55 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:00:55 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:00:55 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:00:55 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:00:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:00:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:00:55 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:55 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:00:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:00:55 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:00:55 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:55 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:00:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:00:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:00:55 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:56 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:00:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:00:56 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:00:56 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:00:56 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:00:56 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:00:56 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:00:56 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:00:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:00:56 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:00:56 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:00:56 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:00:56 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:01:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:01:03 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:01:03 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:01:03 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[116]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:01:03 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[116]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:03 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[116]/td//i[contains(@class,"edit")] found." 2021-12-14 01:01:03 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[116]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:03 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[116]/td//i[contains(@class,"edit")] found." 2021-12-14 01:01:03 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[116]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:01:03 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[116]/td//i[contains(@class,"edit")]" 2021-12-14 01:01:03 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[116]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:01:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:01:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:01:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:01:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:01:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:01:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:01:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:01:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:01:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:01:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:01:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:01:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:01:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:01:06 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:06 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:01:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:01:06 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:01:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:01:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:01:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:01:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:01:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:01:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:01:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:01:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:01:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:01:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:01:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:01:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:01:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:01:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:01:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:01:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:01:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:01:06 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:01:06 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:01:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:01:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:01:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:01:13 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:01:13 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:01:13 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[117]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:01:13 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[117]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:13 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[117]/td//i[contains(@class,"edit")] found." 2021-12-14 01:01:13 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[117]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:13 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[117]/td//i[contains(@class,"edit")] found." 2021-12-14 01:01:13 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[117]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:01:13 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[117]/td//i[contains(@class,"edit")]" 2021-12-14 01:01:14 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[117]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:01:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:01:14 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:14 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:14 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:14 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:14 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:01:14 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:14 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:14 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:14 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:14 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:14 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:01:14 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:14 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:01:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:14 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:14 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:14 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:14 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:01:14 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:14 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:01:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:01:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:16 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:01:16 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:16 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:01:16 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:01:16 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:01:16 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:01:16 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:01:16 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:16 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:01:16 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:01:16 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:01:16 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:01:16 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:01:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:01:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:01:16 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:16 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:01:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:01:16 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:01:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:17 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:01:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:01:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:01:17 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:17 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:01:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:01:17 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:01:17 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:01:17 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:01:17 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:17 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:01:17 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:01:17 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:01:17 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:01:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:01:17 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:01:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:01:24 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:01:24 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:01:24 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[118]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:01:24 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[118]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:24 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[118]/td//i[contains(@class,"edit")] found." 2021-12-14 01:01:24 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[118]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:24 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[118]/td//i[contains(@class,"edit")] found." 2021-12-14 01:01:24 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[118]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:01:24 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[118]/td//i[contains(@class,"edit")]" 2021-12-14 01:01:24 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[118]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:01:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:01:24 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:24 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:24 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:24 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:24 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:01:24 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:24 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:24 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:24 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:24 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:24 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:01:24 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:01:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:24 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:24 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:24 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:24 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:01:24 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:01:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:01:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:01:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:01:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:01:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:01:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:01:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:01:26 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:27 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:01:27 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:01:27 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:01:27 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:01:27 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:01:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:01:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:01:27 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:27 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:01:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:01:27 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:01:27 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:27 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:01:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:01:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:01:27 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:27 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:01:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:01:27 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:01:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:01:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:01:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:01:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:01:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:01:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:01:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:01:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:01:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:01:34 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:01:34 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:01:34 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[119]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:01:34 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[119]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:34 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[119]/td//i[contains(@class,"edit")] found." 2021-12-14 01:01:34 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[119]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:34 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[119]/td//i[contains(@class,"edit")] found." 2021-12-14 01:01:34 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[119]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:01:34 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[119]/td//i[contains(@class,"edit")]" 2021-12-14 01:01:34 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[119]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:01:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:01:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:01:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:01:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:01:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:01:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:01:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:01:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:01:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:01:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:01:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:01:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:01:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:01:37 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:37 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:01:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:01:37 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:01:37 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:01:37 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:01:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:01:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:01:37 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:37 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:01:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:01:37 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:01:37 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:37 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:01:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:01:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:01:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:01:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:01:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:01:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:01:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:01:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:01:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:01:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:01:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:01:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:01:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:01:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:01:45 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:01:45 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:01:45 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[120]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:01:45 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[120]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:45 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[120]/td//i[contains(@class,"edit")] found." 2021-12-14 01:01:45 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[120]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:46 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[120]/td//i[contains(@class,"edit")] found." 2021-12-14 01:01:46 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[120]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:01:46 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[120]/td//i[contains(@class,"edit")]" 2021-12-14 01:01:46 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[120]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:01:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:01:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:01:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:46 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:46 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:46 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:46 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:01:46 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:46 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:01:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:46 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:46 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:46 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:46 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:01:46 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:46 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:01:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:01:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:48 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:01:48 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:48 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:01:48 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:01:48 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:01:48 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:01:48 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:01:48 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:48 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:01:48 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:01:48 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:01:48 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:01:48 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:01:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:01:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:01:48 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:48 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:01:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:01:48 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:01:48 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:48 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:01:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:01:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:01:49 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:49 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:01:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:01:49 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:01:49 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:01:49 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:01:49 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:49 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:01:49 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:01:49 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:01:49 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:01:49 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:01:49 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:01:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:01:57 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:01:57 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:01:57 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[121]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:01:57 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[121]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:57 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[121]/td//i[contains(@class,"edit")] found." 2021-12-14 01:01:57 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[121]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:57 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[121]/td//i[contains(@class,"edit")] found." 2021-12-14 01:01:57 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[121]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:01:57 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[121]/td//i[contains(@class,"edit")]" 2021-12-14 01:01:57 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[121]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:01:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:01:57 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:57 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:57 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:01:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:01:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:57 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:57 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:58 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:58 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:01:58 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:58 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:01:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:01:58 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:58 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:58 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:01:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:01:58 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:01:58 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:01:58 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:02:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:02:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:00 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:02:00 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:00 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:02:00 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:02:00 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:02:00 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:02:00 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:02:00 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:00 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:02:00 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:02:00 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:02:00 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:02:00 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:02:00 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:02:00 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:00 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:02:00 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:00 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:02:00 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:02:00 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:02:00 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:00 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:02:00 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:02:00 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:00 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:02:00 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:00 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:02:00 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:02:00 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:02:00 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:02:00 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:02:00 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:00 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:02:00 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:02:00 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:02:00 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:02:01 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:02:01 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:02:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:02:08 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:02:08 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:02:08 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[122]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:02:08 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[122]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:08 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[122]/td//i[contains(@class,"edit")] found." 2021-12-14 01:02:08 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[122]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:09 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[122]/td//i[contains(@class,"edit")] found." 2021-12-14 01:02:09 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[122]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:02:09 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[122]/td//i[contains(@class,"edit")]" 2021-12-14 01:02:09 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[122]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:02:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:02:09 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:09 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:09 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:02:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:09 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:09 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:09 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:09 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:02:09 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:09 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:02:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:09 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:09 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:09 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:09 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:02:09 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:09 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:02:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:02:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:11 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:02:11 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:12 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:02:12 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:02:12 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:02:12 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:02:12 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:02:12 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:12 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:02:12 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:02:12 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:02:12 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:02:12 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:02:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:02:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:02:12 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:12 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:02:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:02:12 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:02:12 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:12 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:02:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:02:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:02:12 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:12 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:02:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:02:12 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:02:12 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:02:12 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:02:12 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:12 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:02:12 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:02:12 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:02:12 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:02:12 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:02:12 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:02:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:02:19 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:02:19 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:02:19 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[123]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:02:19 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[123]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:19 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[123]/td//i[contains(@class,"edit")] found." 2021-12-14 01:02:19 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[123]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:19 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[123]/td//i[contains(@class,"edit")] found." 2021-12-14 01:02:19 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[123]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:02:19 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[123]/td//i[contains(@class,"edit")]" 2021-12-14 01:02:19 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[123]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:02:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:02:19 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:20 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:20 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:02:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:20 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:02:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:02:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:20 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:02:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:02:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:02:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:22 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:02:22 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:22 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:02:22 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:02:22 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:02:23 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:02:23 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:02:23 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:23 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:02:23 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:02:23 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:02:23 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:02:23 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:02:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:02:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:02:23 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:23 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:02:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:02:23 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:02:23 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:23 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:02:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:02:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:02:23 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:23 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:02:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:02:23 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:02:23 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:02:23 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:02:23 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:23 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:02:23 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:02:23 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:02:23 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:02:23 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:02:23 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:02:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:02:31 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:02:31 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:02:31 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[124]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:02:31 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[124]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:31 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[124]/td//i[contains(@class,"edit")] found." 2021-12-14 01:02:31 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[124]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:31 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[124]/td//i[contains(@class,"edit")] found." 2021-12-14 01:02:31 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[124]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:02:31 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[124]/td//i[contains(@class,"edit")]" 2021-12-14 01:02:31 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[124]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:02:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:02:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:02:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:02:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:02:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:02:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:02:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:02:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:33 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:02:33 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:33 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:02:33 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:02:33 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:02:34 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:02:34 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:02:34 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:34 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:02:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:02:34 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:02:34 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:02:34 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:02:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:02:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:02:34 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:34 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:02:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:02:34 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:02:34 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:34 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:02:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:02:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:02:34 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:34 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:02:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:02:34 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:02:34 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:02:34 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:02:34 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:34 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:02:34 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:02:34 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:02:34 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:02:34 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:02:34 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:02:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:02:41 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:02:41 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:02:41 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[125]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:02:41 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[125]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:41 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[125]/td//i[contains(@class,"edit")] found." 2021-12-14 01:02:41 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[125]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:41 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[125]/td//i[contains(@class,"edit")] found." 2021-12-14 01:02:41 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[125]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:02:41 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[125]/td//i[contains(@class,"edit")]" 2021-12-14 01:02:41 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[125]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:02:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:02:41 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:41 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:41 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:41 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:41 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:02:41 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:41 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:41 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:41 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:42 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:42 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:02:42 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:42 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:02:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:42 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:42 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:42 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:42 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:02:42 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:42 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:02:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:02:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:44 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:02:44 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:44 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:02:44 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:02:44 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:02:44 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:02:44 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:02:44 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:44 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:02:44 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:02:44 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:02:44 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:02:44 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:02:44 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:02:44 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:44 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:02:44 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:44 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:02:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:02:44 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:02:44 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:44 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:02:44 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:02:44 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:44 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:02:44 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:44 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:02:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:02:44 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:02:44 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:02:44 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:02:44 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:44 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:02:44 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:02:44 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:02:44 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:02:45 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:02:45 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:02:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:02:52 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:02:52 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:02:52 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[126]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:02:52 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[126]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:52 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[126]/td//i[contains(@class,"edit")] found." 2021-12-14 01:02:52 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[126]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:52 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[126]/td//i[contains(@class,"edit")] found." 2021-12-14 01:02:52 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[126]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:02:52 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[126]/td//i[contains(@class,"edit")]" 2021-12-14 01:02:52 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[126]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:02:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:02:52 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:53 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:53 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:02:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:02:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:02:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:02:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:02:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:02:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:02:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:02:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:02:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:55 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:02:55 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:55 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:02:55 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:02:55 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:02:55 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:02:55 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:02:55 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:55 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:02:55 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:02:55 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:02:55 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:02:55 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:02:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:02:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:02:55 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:55 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:02:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:02:55 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:02:55 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:55 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:02:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:02:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:02:55 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:55 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:02:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:02:55 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:02:55 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:02:55 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:02:55 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:02:55 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:02:55 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:02:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:02:55 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:02:55 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:02:56 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:02:56 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:03:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:03:03 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:03:03 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:03:03 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[127]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:03:03 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[127]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:03 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[127]/td//i[contains(@class,"edit")] found." 2021-12-14 01:03:03 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[127]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:03 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[127]/td//i[contains(@class,"edit")] found." 2021-12-14 01:03:03 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[127]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:03:03 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[127]/td//i[contains(@class,"edit")]" 2021-12-14 01:03:03 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[127]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:03:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:03:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:03:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:03:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:03:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:03:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:03:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:03:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:05 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:03:05 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:05 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:03:05 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:03:05 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:03:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:03:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:03:06 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:06 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:03:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:03:06 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:03:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:03:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:03:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:03:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:03:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:03:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:03:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:03:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:03:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:03:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:03:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:03:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:03:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:03:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:03:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:03:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:03:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:03:06 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:03:06 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:03:06 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:03:06 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:03:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:03:13 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:03:13 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:03:13 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[128]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:03:13 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[128]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:13 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[128]/td//i[contains(@class,"edit")] found." 2021-12-14 01:03:13 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[128]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:13 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[128]/td//i[contains(@class,"edit")] found." 2021-12-14 01:03:13 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[128]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:03:13 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[128]/td//i[contains(@class,"edit")]" 2021-12-14 01:03:13 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[128]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:03:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:03:13 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:13 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:13 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:03:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:03:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:03:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:03:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:14 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:03:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:03:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:16 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:03:16 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:16 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:03:16 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:03:16 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:03:16 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:03:16 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:03:16 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:16 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:03:16 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:03:16 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:03:16 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:03:16 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:03:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:03:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:03:16 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:16 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:03:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:03:16 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:03:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:03:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:03:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:03:16 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:16 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:03:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:03:16 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:03:17 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:03:17 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:03:17 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:17 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:03:17 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:03:17 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:03:17 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:03:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:03:17 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:03:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:03:24 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:03:24 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:03:24 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[129]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:03:24 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[129]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:24 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[129]/td//i[contains(@class,"edit")] found." 2021-12-14 01:03:24 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[129]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:24 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[129]/td//i[contains(@class,"edit")] found." 2021-12-14 01:03:24 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[129]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:03:24 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[129]/td//i[contains(@class,"edit")]" 2021-12-14 01:03:24 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[129]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:03:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:03:24 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:24 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:24 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:24 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:24 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:03:24 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:24 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:24 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:24 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:24 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:24 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:03:24 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:03:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:24 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:24 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:24 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:24 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:03:24 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:03:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:03:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:03:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:03:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:03:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:03:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:03:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:03:26 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:27 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:03:27 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:03:27 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:03:27 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:03:27 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:03:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:03:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:03:27 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:27 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:03:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:03:27 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:03:27 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:27 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:03:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:03:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:03:27 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:27 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:03:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:03:27 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:03:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:03:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:03:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:03:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:03:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:03:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:03:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:03:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:03:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:03:34 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:03:34 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:03:34 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[130]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:03:34 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[130]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:34 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[130]/td//i[contains(@class,"edit")] found." 2021-12-14 01:03:34 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[130]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:34 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[130]/td//i[contains(@class,"edit")] found." 2021-12-14 01:03:34 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[130]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:03:34 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[130]/td//i[contains(@class,"edit")]" 2021-12-14 01:03:34 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[130]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:03:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:03:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:03:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:03:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:03:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:03:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:03:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:03:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:36 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:03:36 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:36 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:03:36 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:03:36 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:03:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:03:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:03:37 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:37 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:03:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:03:37 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:03:37 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:03:37 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:03:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:03:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:03:37 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:37 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:03:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:03:37 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:03:37 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:37 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:03:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:03:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:03:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:03:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:03:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:03:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:03:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:03:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:03:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:03:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:03:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:03:37 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:03:37 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:03:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:03:44 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:03:44 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:03:44 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[131]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:03:44 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[131]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:44 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[131]/td//i[contains(@class,"edit")] found." 2021-12-14 01:03:44 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[131]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:45 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[131]/td//i[contains(@class,"edit")] found." 2021-12-14 01:03:45 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[131]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:03:45 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[131]/td//i[contains(@class,"edit")]" 2021-12-14 01:03:45 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[131]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:03:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:03:45 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:45 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:45 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:03:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:45 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:45 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:45 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:45 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:03:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:03:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:45 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:45 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:45 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:45 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:03:45 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:45 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:03:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:03:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:47 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:03:47 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:47 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:03:47 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:03:47 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:03:47 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:03:47 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:03:47 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:47 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:03:47 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:03:47 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:03:47 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:03:47 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:03:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:03:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:03:47 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:47 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:03:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:03:47 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:03:47 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:48 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:03:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:03:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:03:48 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:48 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:03:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:03:48 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:03:48 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:03:48 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:03:48 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:48 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:03:48 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:03:48 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:03:48 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:03:48 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:03:48 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:03:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:03:55 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:03:55 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:03:55 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[132]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:03:55 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[132]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:55 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[132]/td//i[contains(@class,"edit")] found." 2021-12-14 01:03:55 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[132]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:55 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[132]/td//i[contains(@class,"edit")] found." 2021-12-14 01:03:55 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[132]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:03:55 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[132]/td//i[contains(@class,"edit")]" 2021-12-14 01:03:55 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[132]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:03:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:03:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:56 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:56 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:03:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:03:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:03:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:03:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:03:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:03:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:03:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:03:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:03:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:58 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:03:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:58 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:03:58 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:03:58 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:03:58 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:03:58 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:03:58 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:58 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:03:58 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:03:58 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:03:58 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:03:58 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:03:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:03:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:03:58 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:58 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:03:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:03:58 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:03:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:03:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:03:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:03:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:03:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:03:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:03:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:03:59 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:03:59 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:03:59 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:03:59 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:03:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:03:59 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:03:59 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:03:59 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:03:59 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:04:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:04:06 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:04:06 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:04:06 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[133]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:04:06 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[133]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:06 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[133]/td//i[contains(@class,"edit")] found." 2021-12-14 01:04:06 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[133]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:06 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[133]/td//i[contains(@class,"edit")] found." 2021-12-14 01:04:06 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[133]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:04:06 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[133]/td//i[contains(@class,"edit")]" 2021-12-14 01:04:06 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[133]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:04:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:04:06 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:06 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:06 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:04:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:04:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:04:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:07 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:07 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:04:07 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:04:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:04:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:09 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:04:09 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:09 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:04:09 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:04:09 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:04:09 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:04:09 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:04:09 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:09 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:04:09 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:04:09 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:04:09 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:04:09 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:04:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:04:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:04:09 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:04:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:04:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:04:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:04:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:04:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:10 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:04:10 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:10 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:04:10 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:04:10 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:04:10 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:04:10 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:04:10 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:10 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:04:10 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:04:10 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:04:10 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:04:10 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:04:10 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:04:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:04:16 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:04:16 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:04:16 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[134]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:04:16 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[134]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:16 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[134]/td//i[contains(@class,"edit")] found." 2021-12-14 01:04:16 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[134]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:16 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[134]/td//i[contains(@class,"edit")] found." 2021-12-14 01:04:16 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[134]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:04:16 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[134]/td//i[contains(@class,"edit")]" 2021-12-14 01:04:17 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[134]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:04:17 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:04:17 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:17 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:17 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:04:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:17 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:04:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:04:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:17 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:04:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:04:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:04:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:19 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:04:19 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:19 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:04:19 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:04:19 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:04:19 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:04:19 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:04:19 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:19 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:04:19 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:04:19 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:04:19 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:04:19 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:04:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:04:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:04:19 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:19 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:04:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:04:19 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:04:19 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:19 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:04:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:04:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:04:20 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:20 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:04:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:04:20 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:04:20 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:04:20 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:04:20 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:20 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:04:20 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:04:20 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:04:20 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:04:20 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:04:20 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:04:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:04:27 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:04:27 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:04:27 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[135]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:04:27 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[135]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:27 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[135]/td//i[contains(@class,"edit")] found." 2021-12-14 01:04:27 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[135]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:27 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[135]/td//i[contains(@class,"edit")] found." 2021-12-14 01:04:27 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[135]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:04:27 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[135]/td//i[contains(@class,"edit")]" 2021-12-14 01:04:27 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[135]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:04:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:04:27 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:27 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:27 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:04:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:27 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:27 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:27 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:27 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:04:27 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:04:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:04:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:04:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:04:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:29 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:04:29 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:29 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:04:29 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:04:29 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:04:30 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:04:30 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:04:30 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:30 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:04:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:04:30 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:04:30 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:04:30 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:04:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:04:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:04:30 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:30 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:04:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:04:30 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:04:30 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:30 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:04:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:04:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:04:30 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:30 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:04:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:04:30 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:04:30 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:04:30 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:04:30 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:30 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:04:30 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:04:30 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:04:30 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:04:30 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:04:30 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:04:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:04:37 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:04:37 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:04:37 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[136]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:04:37 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[136]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:37 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[136]/td//i[contains(@class,"edit")] found." 2021-12-14 01:04:37 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[136]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:37 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[136]/td//i[contains(@class,"edit")] found." 2021-12-14 01:04:37 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[136]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:04:37 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[136]/td//i[contains(@class,"edit")]" 2021-12-14 01:04:37 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[136]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:04:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:04:37 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:37 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:37 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:04:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:37 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:37 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:37 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:37 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:04:37 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:04:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:38 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:38 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:38 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:38 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:04:38 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:04:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:04:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:40 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:04:40 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:40 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:04:40 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:04:40 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:04:40 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:04:40 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:04:40 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:40 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:04:40 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:04:40 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:04:40 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:04:40 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:04:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:04:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:04:40 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:40 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:04:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:04:40 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:04:40 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:40 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:04:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:04:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:04:41 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:41 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:04:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:04:41 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:04:41 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:04:41 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:04:41 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:41 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:04:41 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:04:41 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:04:41 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:04:41 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:04:41 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:04:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:04:48 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:04:48 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:04:48 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[137]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:04:48 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[137]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:48 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[137]/td//i[contains(@class,"edit")] found." 2021-12-14 01:04:48 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[137]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:48 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[137]/td//i[contains(@class,"edit")] found." 2021-12-14 01:04:48 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[137]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:04:48 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[137]/td//i[contains(@class,"edit")]" 2021-12-14 01:04:48 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[137]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:04:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:04:48 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:48 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:48 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:04:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:48 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:48 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:48 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:48 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:04:48 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:48 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:04:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:48 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:48 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:48 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:04:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:04:48 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:04:48 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:48 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:04:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:04:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:51 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:04:51 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:51 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:04:51 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:04:51 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:04:51 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:04:51 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:04:51 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:51 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:04:51 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:04:51 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:04:51 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:04:51 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:04:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:04:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:04:51 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:51 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:04:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:04:51 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:04:51 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:51 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:04:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:04:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:04:51 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:51 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:04:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:04:51 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:04:52 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:04:52 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:04:52 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:04:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:04:52 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:04:52 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:04:52 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:04:52 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:04:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:04:59 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:04:59 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:04:59 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[138]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:04:59 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[138]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:59 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[138]/td//i[contains(@class,"edit")] found." 2021-12-14 01:04:59 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[138]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:59 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[138]/td//i[contains(@class,"edit")] found." 2021-12-14 01:04:59 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[138]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:04:59 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[138]/td//i[contains(@class,"edit")]" 2021-12-14 01:04:59 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[138]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:04:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:04:59 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:04:59 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:04:59 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:04:59 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:04:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:05:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:05:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:05:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:05:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:05:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:02 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:05:02 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:02 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:05:02 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:05:02 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:05:02 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:05:02 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:05:02 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:02 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:05:02 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:05:02 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:05:02 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:05:02 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:05:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:05:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:05:02 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:02 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:05:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:05:02 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:05:02 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:02 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:05:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:05:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:05:02 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:02 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:05:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:05:02 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:05:02 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:05:02 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:05:02 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:02 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:05:02 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:05:02 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:05:02 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:05:02 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:05:02 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:05:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:05:09 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:05:09 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:05:09 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[139]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:05:09 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[139]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:09 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[139]/td//i[contains(@class,"edit")] found." 2021-12-14 01:05:09 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[139]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:09 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[139]/td//i[contains(@class,"edit")] found." 2021-12-14 01:05:09 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[139]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:05:09 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[139]/td//i[contains(@class,"edit")]" 2021-12-14 01:05:09 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[139]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:05:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:05:09 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:09 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:09 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:05:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:09 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:09 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:09 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:09 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:05:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:10 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:05:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:10 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:10 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:10 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:10 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:05:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:10 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:05:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:05:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:11 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:05:11 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:12 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:05:12 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:05:12 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:05:12 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:05:12 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:05:12 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:12 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:05:12 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:05:12 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:05:12 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:05:12 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:05:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:05:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:05:12 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:12 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:05:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:05:12 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:05:12 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:12 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:05:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:05:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:05:12 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:12 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:05:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:05:12 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:05:12 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:05:12 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:05:12 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:12 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:05:12 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:05:12 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:05:12 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:05:12 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:05:12 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:05:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:05:19 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:05:19 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:05:19 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[140]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:05:19 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[140]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:19 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[140]/td//i[contains(@class,"edit")] found." 2021-12-14 01:05:19 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[140]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:19 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[140]/td//i[contains(@class,"edit")] found." 2021-12-14 01:05:19 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[140]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:05:19 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[140]/td//i[contains(@class,"edit")]" 2021-12-14 01:05:20 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[140]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:05:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:05:20 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:20 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:20 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:05:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:20 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:05:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:05:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:20 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:05:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:05:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:05:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:22 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:05:22 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:22 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:05:22 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:05:22 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:05:23 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:05:23 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:05:23 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:23 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:05:23 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:05:23 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:05:23 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:05:23 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:05:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:05:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:05:23 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:23 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:05:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:05:23 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:05:23 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:23 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:05:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:05:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:05:23 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:23 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:05:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:05:23 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:05:23 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:05:23 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:05:23 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:23 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:05:23 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:05:23 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:05:23 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:05:23 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:05:23 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:05:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:05:30 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:05:30 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:05:30 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[141]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:05:30 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[141]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:30 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[141]/td//i[contains(@class,"edit")] found." 2021-12-14 01:05:30 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[141]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:30 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[141]/td//i[contains(@class,"edit")] found." 2021-12-14 01:05:30 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[141]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:05:30 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[141]/td//i[contains(@class,"edit")]" 2021-12-14 01:05:31 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[141]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:05:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:05:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:05:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:05:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:05:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:05:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:05:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:05:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:33 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:05:33 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:33 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:05:33 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:05:33 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:05:33 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:05:33 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:05:33 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:33 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:05:33 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:05:33 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:05:33 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:05:33 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:05:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:05:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:05:33 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:33 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:05:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:05:33 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:05:33 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:33 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:05:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:05:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:05:33 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:33 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:05:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:05:33 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:05:33 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:05:33 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:05:33 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:34 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:05:34 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:05:34 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:05:34 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:05:34 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:05:34 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:05:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:05:41 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:05:41 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:05:41 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[142]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:05:41 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[142]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:41 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[142]/td//i[contains(@class,"edit")] found." 2021-12-14 01:05:41 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[142]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:41 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[142]/td//i[contains(@class,"edit")] found." 2021-12-14 01:05:41 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[142]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:05:41 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[142]/td//i[contains(@class,"edit")]" 2021-12-14 01:05:41 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[142]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:05:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:05:41 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:41 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:41 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:41 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:41 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:05:41 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:41 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:41 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:41 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:41 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:41 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:05:41 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:41 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:05:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:41 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:41 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:41 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:41 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:05:41 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:41 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:05:43 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:05:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:43 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:05:43 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:43 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:05:43 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:05:43 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:05:43 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:05:43 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:05:44 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:44 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:05:44 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:05:44 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:05:44 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:05:44 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:05:44 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:05:44 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:44 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:05:44 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:44 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:05:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:05:44 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:05:44 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:44 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:05:44 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:05:44 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:44 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:05:44 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:44 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:05:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:05:44 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:05:44 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:05:44 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:05:44 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:44 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:05:44 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:05:44 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:05:44 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:05:44 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:05:44 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:05:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:05:51 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:05:51 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:05:51 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[143]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:05:51 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[143]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:51 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[143]/td//i[contains(@class,"edit")] found." 2021-12-14 01:05:51 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[143]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:51 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[143]/td//i[contains(@class,"edit")] found." 2021-12-14 01:05:51 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[143]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:05:51 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[143]/td//i[contains(@class,"edit")]" 2021-12-14 01:05:51 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[143]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:05:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:05:51 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:51 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:51 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:05:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:05:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:52 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:52 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:52 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:05:52 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:52 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:05:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:52 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:52 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:52 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:05:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:05:52 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:05:52 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:52 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:05:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:05:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:54 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:05:54 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:54 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:05:54 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:05:54 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:05:54 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:05:54 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:05:54 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:54 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:05:54 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:05:54 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:05:54 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:05:54 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:05:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:05:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:05:54 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:54 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:05:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:05:54 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:05:54 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:54 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:05:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:05:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:05:55 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:55 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:05:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:05:55 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:05:55 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:05:55 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:05:55 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:05:55 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:05:55 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:05:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:05:55 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:05:55 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:05:55 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:05:55 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:06:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:06:02 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:06:02 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:06:02 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[144]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:06:02 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[144]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:02 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[144]/td//i[contains(@class,"edit")] found." 2021-12-14 01:06:02 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[144]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:02 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[144]/td//i[contains(@class,"edit")] found." 2021-12-14 01:06:02 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[144]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:06:02 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[144]/td//i[contains(@class,"edit")]" 2021-12-14 01:06:02 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[144]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:06:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:06:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:06:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:06:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:06:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:06:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:06:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:06:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:05 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:06:05 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:05 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:06:05 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:06:05 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:06:05 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:06:05 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:06:05 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:05 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:06:05 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:06:05 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:06:05 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:06:05 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:06:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:06:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:06:05 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:05 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:06:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:06:05 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:06:05 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:05 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:06:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:06:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:06:05 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:05 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:06:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:06:05 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:06:05 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:06:05 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:06:05 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:05 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:06:05 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:06:05 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:06:05 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:06:06 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:06:06 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:06:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:06:12 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:06:12 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:06:12 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[145]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:06:12 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[145]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:12 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[145]/td//i[contains(@class,"edit")] found." 2021-12-14 01:06:12 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[145]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:12 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[145]/td//i[contains(@class,"edit")] found." 2021-12-14 01:06:12 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[145]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:06:12 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[145]/td//i[contains(@class,"edit")]" 2021-12-14 01:06:12 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[145]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:06:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:06:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:06:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:06:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:06:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:06:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:06:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:06:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:06:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:06:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:06:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:06:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:06:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:06:14 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:14 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:06:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:06:15 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:06:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:06:15 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:06:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:06:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:06:15 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:15 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:06:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:06:15 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:06:15 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:15 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:06:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:06:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:06:15 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:15 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:06:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:06:15 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:06:15 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:06:15 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:06:15 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:15 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:06:15 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:06:15 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:06:15 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:06:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:06:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:06:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:06:22 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:06:22 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:06:22 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[146]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:06:22 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[146]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:22 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[146]/td//i[contains(@class,"edit")] found." 2021-12-14 01:06:22 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[146]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:22 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[146]/td//i[contains(@class,"edit")] found." 2021-12-14 01:06:22 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[146]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:06:22 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[146]/td//i[contains(@class,"edit")]" 2021-12-14 01:06:22 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[146]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:06:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:06:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:06:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:06:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:06:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:06:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:06:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:06:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:06:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:06:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:06:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:06:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:06:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:06:26 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:26 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:06:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:06:26 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:06:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:06:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:06:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:06:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:06:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:06:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:06:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:06:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:06:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:06:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:06:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:06:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:06:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:06:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:06:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:06:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:06:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:06:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:06:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:06:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:06:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:06:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:06:33 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:06:33 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:06:33 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[147]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:06:33 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[147]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:33 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[147]/td//i[contains(@class,"edit")] found." 2021-12-14 01:06:33 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[147]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:33 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[147]/td//i[contains(@class,"edit")] found." 2021-12-14 01:06:33 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[147]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:06:33 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[147]/td//i[contains(@class,"edit")]" 2021-12-14 01:06:33 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[147]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:06:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:06:33 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:33 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:33 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:06:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:06:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:33 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:06:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:06:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:06:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:06:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:36 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:06:36 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:36 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:06:36 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:06:36 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:06:36 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:06:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:06:36 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:36 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:06:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:06:36 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:06:36 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:06:36 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:06:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:06:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:06:36 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:36 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:06:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:06:36 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:06:36 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:36 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:06:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:06:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:06:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:06:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:06:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:06:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:06:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:06:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:06:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:06:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:06:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:06:37 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:06:37 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:06:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:06:44 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:06:44 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:06:44 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[148]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:06:44 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[148]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:44 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[148]/td//i[contains(@class,"edit")] found." 2021-12-14 01:06:44 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[148]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:44 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[148]/td//i[contains(@class,"edit")] found." 2021-12-14 01:06:44 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[148]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:06:44 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[148]/td//i[contains(@class,"edit")]" 2021-12-14 01:06:44 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[148]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:06:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:06:44 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:44 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:44 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:06:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:06:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:06:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:06:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:06:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:06:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:06:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:06:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:06:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:06:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:06:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:06:46 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:46 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:06:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:06:47 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:06:47 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:06:47 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:06:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:06:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:06:47 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:47 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:06:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:06:47 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:06:47 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:47 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:06:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:06:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:06:47 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:06:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:06:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:06:47 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:06:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:06:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:06:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:06:47 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:06:47 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:06:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:06:47 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:06:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:06:54 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:06:54 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:06:54 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[149]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:06:54 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[149]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:54 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[149]/td//i[contains(@class,"edit")] found." 2021-12-14 01:06:55 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[149]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:55 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[149]/td//i[contains(@class,"edit")] found." 2021-12-14 01:06:55 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[149]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:06:55 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[149]/td//i[contains(@class,"edit")]" 2021-12-14 01:06:55 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[149]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:06:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:06:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:06:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:06:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:06:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:06:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:06:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:06:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:06:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:06:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:06:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:57 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:06:57 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:57 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:06:57 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:06:57 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:06:57 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:06:57 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:06:57 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:57 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:06:57 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:06:57 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:06:57 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:06:57 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:06:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:06:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:06:57 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:57 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:06:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:06:57 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:06:57 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:57 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:06:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:06:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:06:57 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:58 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:06:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:06:58 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:06:58 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:06:58 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:06:58 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:06:58 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:06:58 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:06:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:06:58 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:06:58 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:06:58 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:06:58 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:07:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:07:05 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:07:05 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:07:05 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[150]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:07:05 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[150]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:05 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[150]/td//i[contains(@class,"edit")] found." 2021-12-14 01:07:05 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[150]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:05 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[150]/td//i[contains(@class,"edit")] found." 2021-12-14 01:07:05 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[150]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:07:05 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[150]/td//i[contains(@class,"edit")]" 2021-12-14 01:07:05 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[150]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:07:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:07:05 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:05 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:05 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:07:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:05 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:05 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:05 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:05 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:07:05 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:05 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:07:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:05 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:05 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:07:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:07:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:07:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:07:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:07:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:07:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:07:08 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:07:08 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:07:08 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:08 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:07:08 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:07:08 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:07:08 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:07:08 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:07:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:07:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:07:08 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:07:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:07:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:07:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:07:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:07:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:07:09 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:09 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:07:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:07:09 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:07:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:07:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:07:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:07:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:07:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:07:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:07:09 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:07:09 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:07:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:07:16 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:07:16 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:07:16 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[151]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:07:16 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[151]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:16 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[151]/td//i[contains(@class,"edit")] found." 2021-12-14 01:07:16 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[151]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:16 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[151]/td//i[contains(@class,"edit")] found." 2021-12-14 01:07:16 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[151]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:07:16 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[151]/td//i[contains(@class,"edit")]" 2021-12-14 01:07:16 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[151]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:07:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:07:16 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:17 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:17 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:07:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:17 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:07:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:07:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:17 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:07:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:07:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:07:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:19 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:07:19 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:19 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:07:19 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:07:19 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:07:19 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:07:19 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:07:19 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:19 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:07:19 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:07:19 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:07:19 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:07:19 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:07:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:07:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:07:19 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:19 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:07:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:07:19 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:07:19 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:19 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:07:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:07:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:07:19 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:19 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:07:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:07:19 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:07:19 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:07:19 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:07:19 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:20 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:07:20 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:07:20 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:07:20 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:07:20 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:07:20 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:07:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:07:29 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:07:29 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:07:29 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[152]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:07:29 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[152]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:30 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[152]/td//i[contains(@class,"edit")] found." 2021-12-14 01:07:30 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[152]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:30 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[152]/td//i[contains(@class,"edit")] found." 2021-12-14 01:07:30 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[152]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:07:30 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[152]/td//i[contains(@class,"edit")]" 2021-12-14 01:07:30 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[152]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:07:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:07:30 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:30 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:30 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:07:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:07:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:07:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:07:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:07:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:07:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:07:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:07:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:07:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:07:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:07:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:07:32 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:32 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:07:32 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:07:32 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:07:32 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:07:32 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:07:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:07:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:07:32 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:33 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:07:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:07:33 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:07:33 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:33 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:07:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:07:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:07:33 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:33 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:07:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:07:33 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:07:33 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:07:33 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:07:33 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:33 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:07:33 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:07:33 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:07:33 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:07:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:07:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:07:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:07:40 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:07:40 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:07:40 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[153]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:07:40 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[153]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:40 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[153]/td//i[contains(@class,"edit")] found." 2021-12-14 01:07:40 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[153]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:40 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[153]/td//i[contains(@class,"edit")] found." 2021-12-14 01:07:40 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[153]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:07:40 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[153]/td//i[contains(@class,"edit")]" 2021-12-14 01:07:40 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[153]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:07:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:07:40 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:40 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:40 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:07:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:40 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:40 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:07:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:07:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:40 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:40 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:07:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:07:43 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:07:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:43 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:07:43 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:43 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:07:43 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:07:43 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:07:43 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:07:43 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:07:43 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:43 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:07:43 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:07:43 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:07:43 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:07:43 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:07:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:07:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:07:43 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:43 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:07:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:07:43 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:07:43 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:43 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:07:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:07:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:07:43 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:43 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:07:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:07:43 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:07:44 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:07:44 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:07:44 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:44 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:07:44 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:07:44 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:07:44 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:07:44 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:07:44 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:07:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:07:50 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:07:50 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:07:50 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[154]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:07:50 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[154]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:50 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[154]/td//i[contains(@class,"edit")] found." 2021-12-14 01:07:50 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[154]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:51 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[154]/td//i[contains(@class,"edit")] found." 2021-12-14 01:07:51 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[154]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:07:51 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[154]/td//i[contains(@class,"edit")]" 2021-12-14 01:07:51 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[154]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:07:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:07:51 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:51 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:51 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:07:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:07:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:51 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:51 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:51 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:07:51 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:51 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:07:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:51 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:51 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:07:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:07:51 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:07:51 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:51 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:07:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:07:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:53 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:07:53 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:53 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:07:53 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:07:53 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:07:53 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:07:53 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:07:53 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:53 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:07:53 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:07:54 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:07:54 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:07:54 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:07:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:07:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:07:54 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:54 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:07:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:07:54 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:07:54 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:54 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:07:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:07:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:07:54 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:54 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:07:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:07:54 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:07:54 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:07:54 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:07:54 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:07:54 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:07:54 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:07:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:07:54 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:07:54 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:07:54 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:07:54 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:08:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:08:01 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:08:01 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:08:01 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[155]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:08:01 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[155]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:01 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[155]/td//i[contains(@class,"edit")] found." 2021-12-14 01:08:01 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[155]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:01 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[155]/td//i[contains(@class,"edit")] found." 2021-12-14 01:08:01 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[155]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:08:01 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[155]/td//i[contains(@class,"edit")]" 2021-12-14 01:08:01 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[155]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:08:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:08:01 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:01 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:01 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:08:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:01 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:01 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:08:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:08:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:01 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:01 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:08:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:08:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:08:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:03 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:08:03 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:03 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:08:03 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:08:03 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:08:03 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:08:03 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:08:03 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:03 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:08:03 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:08:04 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:08:04 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:08:04 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:08:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:08:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:08:04 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:04 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:08:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:08:04 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:08:04 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:04 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:08:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:08:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:08:04 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:04 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:08:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:08:04 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:08:04 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:08:04 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:08:04 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:04 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:08:04 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:08:04 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:08:04 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:08:04 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:08:04 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:08:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:08:11 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:08:11 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:08:11 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[156]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:08:11 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[156]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:11 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[156]/td//i[contains(@class,"edit")] found." 2021-12-14 01:08:11 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[156]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:11 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[156]/td//i[contains(@class,"edit")] found." 2021-12-14 01:08:11 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[156]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:08:11 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[156]/td//i[contains(@class,"edit")]" 2021-12-14 01:08:11 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[156]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:08:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:08:11 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:11 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:11 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:08:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:08:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:08:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:08:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:08:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:08:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:08:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:08:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:08:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:08:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:08:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:08:14 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:14 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:08:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:08:14 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:08:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:08:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:08:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:08:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:08:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:08:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:08:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:08:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:14 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:08:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:08:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:08:15 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:15 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:08:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:08:15 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:08:15 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:08:15 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:08:15 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:15 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:08:15 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:08:15 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:08:15 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:08:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:08:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:08:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:08:24 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:08:24 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:08:24 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[157]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:08:24 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[157]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:24 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[157]/td//i[contains(@class,"edit")] found." 2021-12-14 01:08:24 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[157]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:24 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[157]/td//i[contains(@class,"edit")] found." 2021-12-14 01:08:24 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[157]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:08:24 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[157]/td//i[contains(@class,"edit")]" 2021-12-14 01:08:24 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[157]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:08:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:08:24 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:24 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:24 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:24 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:24 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:08:24 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:24 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:24 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:24 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:24 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:24 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:08:24 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:08:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:24 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:24 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:24 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:24 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:08:24 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:08:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:08:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:08:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:08:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:08:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:08:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:08:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:08:26 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:26 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:08:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:08:26 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:08:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:08:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:08:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:08:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:08:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:08:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:08:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:08:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:08:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:08:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:08:27 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:27 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:08:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:08:27 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:08:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:08:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:08:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:08:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:08:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:08:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:08:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:08:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:08:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:08:35 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:08:35 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:08:35 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[158]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:08:35 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[158]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:35 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[158]/td//i[contains(@class,"edit")] found." 2021-12-14 01:08:35 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[158]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:35 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[158]/td//i[contains(@class,"edit")] found." 2021-12-14 01:08:35 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[158]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:08:35 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[158]/td//i[contains(@class,"edit")]" 2021-12-14 01:08:35 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[158]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:08:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:08:35 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:35 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:35 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:08:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:08:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:08:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:08:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:08:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:08:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:08:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:08:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:08:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:08:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:08:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:08:37 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:37 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:08:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:08:37 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:08:37 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:08:37 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:08:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:08:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:08:37 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:37 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:08:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:08:37 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:08:37 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:37 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:08:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:08:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:08:38 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:38 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:08:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:08:38 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:08:38 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:08:38 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:08:38 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:38 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:08:38 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:08:38 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:08:38 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:08:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:08:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:08:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:08:45 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:08:45 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:08:45 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[159]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:08:45 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[159]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:45 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[159]/td//i[contains(@class,"edit")] found." 2021-12-14 01:08:45 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[159]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:45 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[159]/td//i[contains(@class,"edit")] found." 2021-12-14 01:08:45 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[159]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:08:45 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[159]/td//i[contains(@class,"edit")]" 2021-12-14 01:08:46 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[159]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:08:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:08:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:08:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:46 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:46 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:46 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:46 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:08:46 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:46 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:08:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:46 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:46 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:46 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:46 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:08:46 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:46 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:08:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:08:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:48 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:08:48 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:49 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:08:49 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:08:49 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:08:49 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:08:49 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:08:49 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:49 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:08:49 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:08:49 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:08:49 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:08:49 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:08:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:08:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:08:49 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:49 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:08:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:08:49 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:08:49 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:49 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:08:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:08:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:08:49 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:49 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:08:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:08:49 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:08:49 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:08:49 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:08:49 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:49 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:08:49 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:08:49 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:08:49 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:08:49 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:08:49 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:08:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:08:58 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:08:58 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:08:58 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[160]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:08:58 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[160]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:58 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[160]/td//i[contains(@class,"edit")] found." 2021-12-14 01:08:58 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[160]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:58 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[160]/td//i[contains(@class,"edit")] found." 2021-12-14 01:08:58 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[160]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:08:58 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[160]/td//i[contains(@class,"edit")]" 2021-12-14 01:08:58 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[160]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:08:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:08:58 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:58 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:58 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:08:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:08:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:58 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:58 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:58 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:58 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:08:58 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:58 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:08:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:08:58 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:58 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:58 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:08:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:08:58 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:08:58 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:08:58 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:09:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:09:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:00 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:09:00 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:01 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:09:01 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:09:01 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:09:01 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:09:01 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:09:01 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:01 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:09:01 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:09:01 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:09:01 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:09:01 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:09:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:09:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:09:01 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:01 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:09:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:09:01 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:09:01 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:01 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:09:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:09:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:09:01 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:01 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:09:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:09:01 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:09:01 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:09:01 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:09:01 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:01 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:09:01 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:09:01 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:09:01 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:09:01 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:09:01 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:09:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:09:10 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:09:10 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:09:10 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[161]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:09:10 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[161]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:10 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[161]/td//i[contains(@class,"edit")] found." 2021-12-14 01:09:10 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[161]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:10 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[161]/td//i[contains(@class,"edit")] found." 2021-12-14 01:09:10 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[161]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:09:10 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[161]/td//i[contains(@class,"edit")]" 2021-12-14 01:09:10 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[161]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:09:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:09:10 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:10 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:10 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:09:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:10 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:10 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:10 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:10 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:09:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:09:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:09:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:09:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:09:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:13 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:09:13 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:13 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:09:13 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:09:13 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:09:13 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:09:13 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:09:13 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:13 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:09:13 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:09:13 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:09:13 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:09:13 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:09:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:09:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:09:13 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:13 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:09:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:09:13 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:09:13 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:13 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:09:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:09:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:09:13 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:13 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:09:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:09:13 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:09:13 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:09:13 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:09:13 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:13 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:09:13 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:09:13 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:09:13 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:09:13 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:09:13 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:09:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:09:20 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:09:20 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:09:20 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[162]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:09:20 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[162]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:20 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[162]/td//i[contains(@class,"edit")] found." 2021-12-14 01:09:20 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[162]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:20 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[162]/td//i[contains(@class,"edit")] found." 2021-12-14 01:09:20 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[162]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:09:20 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[162]/td//i[contains(@class,"edit")]" 2021-12-14 01:09:20 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[162]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:09:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:09:20 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:20 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:20 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:09:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:09:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:09:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:09:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:09:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:09:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:23 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:09:23 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:23 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:09:23 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:09:23 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:09:23 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:09:23 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:09:23 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:23 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:09:23 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:09:23 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:09:23 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:09:23 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:09:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:09:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:09:23 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:23 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:09:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:09:23 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:09:24 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:24 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:09:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:09:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:09:24 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:24 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:09:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:09:24 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:09:24 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:09:24 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:09:24 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:24 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:09:24 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:09:24 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:09:24 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:09:24 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:09:24 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:09:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:09:31 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:09:31 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:09:31 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[163]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:09:31 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[163]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:31 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[163]/td//i[contains(@class,"edit")] found." 2021-12-14 01:09:31 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[163]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:31 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[163]/td//i[contains(@class,"edit")] found." 2021-12-14 01:09:31 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[163]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:09:31 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[163]/td//i[contains(@class,"edit")]" 2021-12-14 01:09:31 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[163]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:09:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:09:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:09:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:09:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:09:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:09:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:09:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:09:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:33 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:09:33 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:33 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:09:33 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:09:33 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:09:33 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:09:33 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:09:33 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:34 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:09:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:09:34 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:09:34 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:09:34 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:09:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:09:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:09:34 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:34 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:09:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:09:34 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:09:34 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:34 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:09:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:09:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:09:34 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:34 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:09:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:09:34 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:09:34 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:09:34 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:09:34 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:34 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:09:34 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:09:34 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:09:34 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:09:34 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:09:34 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:09:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:09:41 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:09:41 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:09:41 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[164]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:09:41 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[164]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:41 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[164]/td//i[contains(@class,"edit")] found." 2021-12-14 01:09:41 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[164]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:41 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[164]/td//i[contains(@class,"edit")] found." 2021-12-14 01:09:41 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[164]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:09:41 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[164]/td//i[contains(@class,"edit")]" 2021-12-14 01:09:41 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[164]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:09:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:09:41 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:09:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:42 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:42 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:42 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:42 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:09:42 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:43 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:09:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:43 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:43 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:43 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:43 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:09:43 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:43 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:09:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:09:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:44 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:09:44 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:44 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:09:44 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:09:44 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:09:45 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:09:45 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:09:45 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:45 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:09:45 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:09:45 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:09:45 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:09:45 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:09:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:09:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:09:45 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:45 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:09:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:09:45 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:09:45 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:45 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:09:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:09:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:09:45 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:45 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:09:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:09:45 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:09:45 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:09:45 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:09:45 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:45 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:09:45 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:09:45 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:09:45 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:09:45 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:09:45 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:09:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:09:53 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:09:53 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:09:53 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[165]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:09:53 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[165]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:53 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[165]/td//i[contains(@class,"edit")] found." 2021-12-14 01:09:53 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[165]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:53 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[165]/td//i[contains(@class,"edit")] found." 2021-12-14 01:09:53 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[165]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:09:53 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[165]/td//i[contains(@class,"edit")]" 2021-12-14 01:09:53 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[165]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:09:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:09:53 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:53 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:53 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:09:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:09:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:09:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:09:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:09:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:09:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:09:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:09:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:09:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:56 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:09:56 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:56 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:09:56 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:09:56 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:09:56 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:09:56 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:09:56 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:56 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:09:56 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:09:56 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:09:56 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:09:56 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:09:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:09:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:09:56 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:56 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:09:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:09:56 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:09:56 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:56 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:09:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:09:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:09:57 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:57 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:09:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:09:57 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:09:57 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:09:57 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:09:57 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:09:57 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:09:57 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:09:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:09:57 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:09:57 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:09:57 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:09:57 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:10:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:10:04 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:10:04 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:10:04 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[166]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:10:04 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[166]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:04 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[166]/td//i[contains(@class,"edit")] found." 2021-12-14 01:10:04 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[166]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:04 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[166]/td//i[contains(@class,"edit")] found." 2021-12-14 01:10:04 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[166]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:10:04 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[166]/td//i[contains(@class,"edit")]" 2021-12-14 01:10:05 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[166]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:10:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:10:05 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:05 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:05 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:10:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:05 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:05 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:05 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:05 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:10:05 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:05 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:10:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:05 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:05 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:05 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:05 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:10:05 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:05 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:10:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:10:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:07 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:10:07 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:07 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:10:07 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:10:07 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:10:07 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:10:07 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:10:07 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:07 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:10:07 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:10:07 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:10:07 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:10:07 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:10:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:10:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:10:07 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:07 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:10:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:10:07 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:10:07 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:07 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:10:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:10:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:10:07 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:07 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:10:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:10:07 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:10:08 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:10:08 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:10:08 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:08 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:10:08 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:10:08 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:10:08 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:10:08 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:10:08 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:10:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:10:14 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:10:14 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:10:14 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[167]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:10:14 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[167]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:14 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[167]/td//i[contains(@class,"edit")] found." 2021-12-14 01:10:15 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[167]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:15 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[167]/td//i[contains(@class,"edit")] found." 2021-12-14 01:10:15 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[167]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:10:15 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[167]/td//i[contains(@class,"edit")]" 2021-12-14 01:10:15 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[167]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:10:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:10:15 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:15 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:15 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:10:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:15 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:15 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:15 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:15 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:10:15 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:15 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:10:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:15 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:15 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:15 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:15 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:10:15 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:15 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:10:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:10:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:18 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:10:18 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:18 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:10:18 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:10:18 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:10:18 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:10:18 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:10:18 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:18 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:10:18 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:10:18 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:10:18 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:10:18 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:10:18 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:10:18 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:18 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:10:18 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:18 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:10:18 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:10:18 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:10:18 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:18 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:10:18 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:10:18 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:18 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:10:18 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:18 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:10:18 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:10:18 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:10:18 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:10:18 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:10:18 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:18 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:10:18 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:18 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:10:18 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:10:18 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:10:19 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:10:19 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:10:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:10:26 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:10:26 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:10:26 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[168]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:10:26 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[168]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:26 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[168]/td//i[contains(@class,"edit")] found." 2021-12-14 01:10:26 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[168]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:26 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[168]/td//i[contains(@class,"edit")] found." 2021-12-14 01:10:26 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[168]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:10:26 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[168]/td//i[contains(@class,"edit")]" 2021-12-14 01:10:26 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[168]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:10:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:10:26 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:26 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:26 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:10:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:26 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:26 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:26 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:26 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:10:26 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:26 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:10:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:27 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:27 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:27 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:27 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:10:27 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:27 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:10:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:10:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:28 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:10:28 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:28 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:10:28 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:10:28 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:10:28 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:10:28 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:10:28 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:28 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:10:28 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:10:29 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:10:29 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:10:29 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:10:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:10:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:10:29 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:29 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:10:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:10:29 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:10:29 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:29 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:10:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:10:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:10:29 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:29 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:10:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:10:29 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:10:29 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:10:29 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:10:29 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:29 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:10:29 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:10:29 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:10:29 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:10:29 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:10:29 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:10:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:10:36 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:10:36 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:10:36 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[169]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:10:36 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[169]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:36 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[169]/td//i[contains(@class,"edit")] found." 2021-12-14 01:10:36 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[169]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:36 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[169]/td//i[contains(@class,"edit")] found." 2021-12-14 01:10:36 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[169]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:10:36 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[169]/td//i[contains(@class,"edit")]" 2021-12-14 01:10:37 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[169]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:10:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:10:37 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:37 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:37 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:10:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:37 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:37 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:37 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:37 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:10:37 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:37 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:10:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:37 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:37 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:37 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:37 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:10:37 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:37 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:10:39 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:10:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:39 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:10:39 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:39 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:10:39 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:10:39 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:10:39 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:10:39 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:10:39 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:39 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:10:39 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:10:39 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:10:39 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:10:39 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:10:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:10:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:10:39 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:39 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:10:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:10:39 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:10:39 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:39 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:10:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:10:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:10:39 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:39 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:10:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:10:39 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:10:39 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:10:39 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:10:39 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:39 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:10:39 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:10:40 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:10:40 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:10:40 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:10:40 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:10:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:10:48 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:10:48 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:10:48 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[170]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:10:48 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[170]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:48 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[170]/td//i[contains(@class,"edit")] found." 2021-12-14 01:10:48 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[170]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:48 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[170]/td//i[contains(@class,"edit")] found." 2021-12-14 01:10:48 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[170]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:10:48 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[170]/td//i[contains(@class,"edit")]" 2021-12-14 01:10:49 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[170]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:10:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:10:49 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:10:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:10:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:49 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:49 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:10:49 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:49 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:10:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:49 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:49 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:10:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:10:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:10:49 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:49 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:10:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:10:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:10:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:10:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:10:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:10:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:10:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:10:52 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:52 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:10:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:10:52 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:10:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:10:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:10:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:10:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:10:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:10:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:10:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:10:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:52 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:10:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:10:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:10:52 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:52 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:10:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:10:52 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:10:52 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:10:52 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:10:52 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:10:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:10:52 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:10:52 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:10:53 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:10:53 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:10:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:10:59 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:10:59 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:10:59 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[171]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:10:59 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[171]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:10:59 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[171]/td//i[contains(@class,"edit")] found." 2021-12-14 01:10:59 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[171]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:10:59 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[171]/td//i[contains(@class,"edit")] found." 2021-12-14 01:10:59 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[171]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:10:59 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[171]/td//i[contains(@class,"edit")]" 2021-12-14 01:11:00 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[171]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:11:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:11:00 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:00 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:00 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:11:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:11:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:11:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:11:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:11:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:11:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:02 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:11:02 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:02 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:11:02 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:11:02 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:11:02 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:11:02 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:11:02 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:02 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:11:02 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:11:02 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:11:02 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:11:02 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:11:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:11:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:11:02 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:02 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:11:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:11:02 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:11:02 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:02 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:11:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:11:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:11:02 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:02 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:11:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:11:02 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:11:03 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:11:03 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:11:03 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:03 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:11:03 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:11:03 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:11:03 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:11:03 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:11:03 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:11:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:11:10 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:11:10 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:11:10 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[172]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:11:10 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[172]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:10 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[172]/td//i[contains(@class,"edit")] found." 2021-12-14 01:11:10 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[172]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:10 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[172]/td//i[contains(@class,"edit")] found." 2021-12-14 01:11:10 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[172]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:11:10 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[172]/td//i[contains(@class,"edit")]" 2021-12-14 01:11:10 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[172]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:11:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:11:10 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:11 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:11 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:11:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:11:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:11:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:11:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:11:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:11:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:12 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:11:13 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:13 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:11:13 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:11:13 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:11:13 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:11:13 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:11:13 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:13 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:11:13 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:11:13 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:11:13 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:11:13 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:11:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:11:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:11:13 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:13 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:11:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:11:13 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:11:13 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:13 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:11:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:11:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:11:13 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:13 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:11:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:11:13 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:11:13 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:11:13 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:11:13 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:13 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:11:13 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:11:13 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:11:13 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:11:14 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:11:14 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:11:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:11:20 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:11:20 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:11:20 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[173]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:11:20 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[173]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:20 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[173]/td//i[contains(@class,"edit")] found." 2021-12-14 01:11:20 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[173]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:20 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[173]/td//i[contains(@class,"edit")] found." 2021-12-14 01:11:20 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[173]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:11:20 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[173]/td//i[contains(@class,"edit")]" 2021-12-14 01:11:20 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[173]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:11:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:11:20 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:20 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:20 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:11:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:11:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:11:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:11:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:11:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:11:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:23 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:11:23 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:23 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:11:23 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:11:23 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:11:23 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:11:23 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:11:23 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:23 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:11:23 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:11:23 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:11:23 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:11:23 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:11:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:11:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:11:23 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:23 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:11:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:11:23 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:11:23 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:23 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:11:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:11:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:11:23 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:23 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:11:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:11:23 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:11:23 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:11:23 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:11:23 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:23 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:11:23 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:11:23 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:11:23 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:11:24 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:11:24 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:11:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:11:30 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:11:30 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:11:30 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[174]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:11:30 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[174]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:30 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[174]/td//i[contains(@class,"edit")] found." 2021-12-14 01:11:30 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[174]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:30 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[174]/td//i[contains(@class,"edit")] found." 2021-12-14 01:11:30 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[174]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:11:30 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[174]/td//i[contains(@class,"edit")]" 2021-12-14 01:11:30 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[174]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:11:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:11:30 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:30 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:11:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:11:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:11:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:11:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:11:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:11:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:11:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:11:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:11:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:11:33 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:11:33 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:11:33 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:33 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:11:33 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:11:33 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:11:33 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:11:33 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:11:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:11:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:11:33 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:33 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:11:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:11:33 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:11:33 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:33 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:11:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:11:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:11:33 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:33 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:11:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:11:33 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:11:33 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:11:33 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:11:33 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:33 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:11:33 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:11:33 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:11:33 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:11:34 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:11:34 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:11:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:11:40 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:11:40 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:11:40 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[175]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:11:40 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[175]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:40 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[175]/td//i[contains(@class,"edit")] found." 2021-12-14 01:11:40 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[175]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:40 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[175]/td//i[contains(@class,"edit")] found." 2021-12-14 01:11:40 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[175]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:11:40 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[175]/td//i[contains(@class,"edit")]" 2021-12-14 01:11:41 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[175]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:11:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:11:41 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:41 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:41 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:41 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:41 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:11:41 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:41 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:41 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:41 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:41 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:41 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:11:41 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:41 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:11:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:41 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:41 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:41 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:41 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:11:41 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:41 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:11:43 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:11:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:43 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:11:43 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:43 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:11:43 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:11:43 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:11:43 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:11:43 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:11:43 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:43 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:11:43 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:11:44 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:11:44 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:11:44 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:11:44 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:11:44 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:44 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:11:44 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:44 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:11:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:11:44 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:11:44 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:44 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:11:44 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:11:44 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:44 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:11:44 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:44 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:11:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:11:44 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:11:44 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:11:44 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:11:44 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:44 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:11:44 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:11:44 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:11:44 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:11:44 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:11:44 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:11:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:11:51 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:11:51 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:11:51 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[176]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:11:51 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[176]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:51 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[176]/td//i[contains(@class,"edit")] found." 2021-12-14 01:11:51 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[176]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:51 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[176]/td//i[contains(@class,"edit")] found." 2021-12-14 01:11:51 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[176]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:11:51 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[176]/td//i[contains(@class,"edit")]" 2021-12-14 01:11:51 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[176]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:11:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:11:51 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:51 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:51 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:11:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:11:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:51 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:51 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:51 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:11:51 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:51 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:11:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:51 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:51 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:11:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:11:51 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:11:51 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:51 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:11:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:11:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:53 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:11:53 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:53 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:11:53 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:11:53 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:11:53 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:11:53 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:11:53 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:53 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:11:53 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:11:53 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:11:53 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:11:53 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:11:53 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:11:53 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:11:53 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:53 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:11:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:11:53 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:11:53 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:53 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:11:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:11:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:11:54 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:54 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:11:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:11:54 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:11:54 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:11:54 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:11:54 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:11:54 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:11:54 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:11:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:11:54 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:11:54 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:11:54 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:11:54 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:12:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:12:00 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:12:00 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:12:00 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[177]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:12:00 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[177]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:01 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[177]/td//i[contains(@class,"edit")] found." 2021-12-14 01:12:01 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[177]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:01 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[177]/td//i[contains(@class,"edit")] found." 2021-12-14 01:12:01 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[177]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:12:01 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[177]/td//i[contains(@class,"edit")]" 2021-12-14 01:12:01 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[177]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:12:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:12:01 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:01 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:01 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:12:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:01 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:01 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:12:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:12:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:01 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:01 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:12:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:12:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:12:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:04 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:12:04 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:04 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:12:04 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:12:04 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:12:04 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:12:04 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:12:04 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:04 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:12:04 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:12:04 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:12:04 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:12:04 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:12:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:12:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:12:04 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:04 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:12:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:12:04 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:12:04 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:04 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:12:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:12:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:12:04 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:04 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:12:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:12:04 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:12:04 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:12:04 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:12:04 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:04 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:12:04 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:12:04 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:12:04 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:12:05 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:12:05 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:12:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:12:11 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:12:11 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:12:11 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[178]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:12:11 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[178]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:11 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[178]/td//i[contains(@class,"edit")] found." 2021-12-14 01:12:11 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[178]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:11 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[178]/td//i[contains(@class,"edit")] found." 2021-12-14 01:12:11 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[178]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:12:11 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[178]/td//i[contains(@class,"edit")]" 2021-12-14 01:12:12 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[178]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:12:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:12:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:12:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:12:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:12:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:12:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:12:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:12:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:12:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:12:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:12:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:12:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:12:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:12:14 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:14 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:12:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:12:14 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:12:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:12:15 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:12:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:12:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:12:15 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:15 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:12:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:12:15 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:12:15 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:15 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:12:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:12:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:12:15 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:15 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:12:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:12:15 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:12:15 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:12:15 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:12:15 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:15 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:12:15 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:12:15 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:12:15 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:12:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:12:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:12:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:12:22 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:12:22 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:12:22 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[179]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:12:22 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[179]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:22 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[179]/td//i[contains(@class,"edit")] found." 2021-12-14 01:12:22 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[179]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:22 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[179]/td//i[contains(@class,"edit")] found." 2021-12-14 01:12:22 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[179]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:12:22 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[179]/td//i[contains(@class,"edit")]" 2021-12-14 01:12:22 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[179]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:12:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:12:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:12:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:12:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:12:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:12:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:12:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:12:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:12:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:12:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:12:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:12:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:12:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:12:25 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:25 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:12:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:12:26 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:12:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:12:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:12:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:12:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:12:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:12:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:12:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:12:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:12:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:12:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:12:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:12:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:12:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:12:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:12:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:12:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:12:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:12:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:12:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:12:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:12:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:12:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:12:33 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:12:33 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:12:33 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[180]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:12:33 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[180]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:33 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[180]/td//i[contains(@class,"edit")] found." 2021-12-14 01:12:33 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[180]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:33 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[180]/td//i[contains(@class,"edit")] found." 2021-12-14 01:12:33 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[180]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:12:33 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[180]/td//i[contains(@class,"edit")]" 2021-12-14 01:12:33 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[180]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:12:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:12:33 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:33 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:33 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:12:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:12:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:12:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:12:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:12:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:12:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:36 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:12:36 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:36 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:12:36 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:12:36 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:12:36 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:12:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:12:36 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:36 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:12:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:12:36 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:12:36 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:12:36 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:12:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:12:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:12:36 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:36 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:12:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:12:36 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:12:36 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:36 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:12:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:12:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:12:36 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:36 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:12:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:12:36 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:12:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:12:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:12:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:12:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:12:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:12:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:12:37 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:12:37 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:12:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:12:44 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:12:44 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:12:44 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[181]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:12:44 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[181]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:44 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[181]/td//i[contains(@class,"edit")] found." 2021-12-14 01:12:44 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[181]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:44 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[181]/td//i[contains(@class,"edit")] found." 2021-12-14 01:12:44 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[181]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:12:44 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[181]/td//i[contains(@class,"edit")]" 2021-12-14 01:12:44 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[181]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:12:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:12:44 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:44 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:44 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:12:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:12:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:12:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:12:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:12:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:12:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:12:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:12:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:12:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:12:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:12:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:12:46 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:46 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:12:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:12:46 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:12:46 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:12:46 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:12:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:12:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:12:46 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:46 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:12:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:12:46 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:12:46 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:46 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:12:47 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:12:47 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:47 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:12:47 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:47 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:12:47 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:12:47 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:12:47 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:12:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:12:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:12:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:12:47 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:12:47 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:12:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:12:47 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:12:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:12:55 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:12:55 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:12:55 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[182]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:12:55 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[182]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:55 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[182]/td//i[contains(@class,"edit")] found." 2021-12-14 01:12:55 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[182]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:55 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[182]/td//i[contains(@class,"edit")] found." 2021-12-14 01:12:55 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[182]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:12:55 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[182]/td//i[contains(@class,"edit")]" 2021-12-14 01:12:55 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[182]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:12:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:12:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:12:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:12:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:12:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:12:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:12:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:12:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:12:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:12:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:12:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:58 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:12:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:58 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:12:58 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:12:58 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:12:58 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:12:58 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:12:58 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:58 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:12:58 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:12:58 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:12:58 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:12:58 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:12:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:12:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:12:58 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:58 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:12:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:12:58 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:12:58 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:58 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:12:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:12:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:12:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:12:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:12:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:12:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:12:59 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:12:59 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:12:59 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:12:59 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:12:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:12:59 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:12:59 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:12:59 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:12:59 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:13:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:13:06 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:13:06 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:13:06 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[183]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:13:06 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[183]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:06 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[183]/td//i[contains(@class,"edit")] found." 2021-12-14 01:13:06 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[183]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:06 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[183]/td//i[contains(@class,"edit")] found." 2021-12-14 01:13:06 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[183]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:13:06 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[183]/td//i[contains(@class,"edit")]" 2021-12-14 01:13:07 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[183]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:13:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:13:07 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:07 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:07 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:07 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:07 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:13:07 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:07 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:07 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:07 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:13:07 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:13:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:07 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:07 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:13:07 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:13:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:13:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:09 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:13:09 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:09 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:13:09 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:13:09 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:13:09 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:13:09 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:13:09 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:09 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:13:09 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:13:09 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:13:09 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:13:09 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:13:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:13:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:13:09 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:13:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:13:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:13:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:13:10 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:13:10 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:10 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:13:10 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:10 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:13:10 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:13:10 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:13:10 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:13:10 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:13:10 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:10 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:13:10 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:13:10 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:13:10 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:13:10 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:13:10 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:13:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:13:17 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:13:17 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:13:17 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[184]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:13:17 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[184]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:17 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[184]/td//i[contains(@class,"edit")] found." 2021-12-14 01:13:17 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[184]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:17 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[184]/td//i[contains(@class,"edit")] found." 2021-12-14 01:13:17 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[184]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:13:17 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[184]/td//i[contains(@class,"edit")]" 2021-12-14 01:13:18 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[184]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:13:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:13:18 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:18 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:18 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:18 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:18 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:13:18 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:18 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:18 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:18 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:18 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:18 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:13:18 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:18 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:13:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:18 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:18 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:18 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:18 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:13:18 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:18 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:13:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:13:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:21 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:13:21 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:21 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:13:21 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:13:21 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:13:21 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:13:21 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:13:21 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:21 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:13:21 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:13:21 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:13:21 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:13:21 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:13:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:13:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:13:21 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:21 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:13:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:13:21 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:13:21 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:21 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:13:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:13:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:13:21 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:21 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:13:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:13:21 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:13:22 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:13:22 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:13:22 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:22 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:13:22 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:13:22 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:13:22 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:13:22 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:13:22 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:13:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:13:29 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:13:29 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:13:29 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[185]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:13:29 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[185]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:29 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[185]/td//i[contains(@class,"edit")] found." 2021-12-14 01:13:29 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[185]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:29 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[185]/td//i[contains(@class,"edit")] found." 2021-12-14 01:13:29 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[185]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:13:29 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[185]/td//i[contains(@class,"edit")]" 2021-12-14 01:13:29 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[185]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:13:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:13:29 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:29 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:29 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:13:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:29 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:29 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:13:29 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:29 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:13:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:29 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:29 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:13:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:13:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:13:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:31 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:13:31 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:31 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:13:31 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:13:31 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:13:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:13:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:13:32 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:32 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:13:32 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:13:32 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:13:32 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:13:32 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:13:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:13:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:13:32 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:32 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:13:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:13:32 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:13:32 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:32 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:13:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:13:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:13:32 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:32 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:13:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:13:32 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:13:32 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:13:32 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:13:32 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:32 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:13:32 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:32 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:13:32 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:13:32 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:13:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:13:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:13:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:13:40 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:13:40 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:13:40 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[186]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:13:40 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[186]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:40 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[186]/td//i[contains(@class,"edit")] found." 2021-12-14 01:13:40 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[186]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:40 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[186]/td//i[contains(@class,"edit")] found." 2021-12-14 01:13:40 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[186]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:13:40 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[186]/td//i[contains(@class,"edit")]" 2021-12-14 01:13:40 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[186]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:13:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:13:40 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:40 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:40 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:13:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:40 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:40 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:13:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:13:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:40 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:40 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:13:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:13:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:13:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:42 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:13:42 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:42 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:13:42 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:13:42 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:13:43 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:13:43 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:13:43 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:43 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:13:43 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:13:43 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:13:43 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:13:43 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:13:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:13:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:13:43 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:43 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:13:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:13:43 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:13:43 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:43 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:13:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:13:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:13:43 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:43 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:13:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:13:43 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:13:43 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:13:43 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:13:43 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:43 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:13:43 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:13:43 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:13:43 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:13:43 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:13:43 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:13:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:13:50 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:13:50 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:13:50 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[187]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:13:50 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[187]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:50 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[187]/td//i[contains(@class,"edit")] found." 2021-12-14 01:13:50 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[187]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:50 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[187]/td//i[contains(@class,"edit")] found." 2021-12-14 01:13:50 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[187]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:13:50 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[187]/td//i[contains(@class,"edit")]" 2021-12-14 01:13:50 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[187]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:13:50 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:13:50 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:51 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:51 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:13:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:13:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:51 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:51 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:51 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:13:51 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:51 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:13:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:51 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:51 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:13:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:13:51 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:13:51 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:51 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:13:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:13:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:53 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:13:53 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:53 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:13:53 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:13:53 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:13:54 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:13:54 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:13:54 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:54 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:13:54 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:13:54 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:13:54 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:13:54 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:13:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:13:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:13:54 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:54 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:13:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:13:54 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:13:54 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:54 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:13:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:13:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:13:54 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:54 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:13:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:13:54 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:13:54 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:13:54 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:13:54 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:13:54 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:13:54 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:13:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:13:54 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:13:54 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:13:55 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:13:55 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:14:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:14:01 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:14:01 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:14:01 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[188]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:14:01 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[188]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:01 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[188]/td//i[contains(@class,"edit")] found." 2021-12-14 01:14:01 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[188]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:01 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[188]/td//i[contains(@class,"edit")] found." 2021-12-14 01:14:01 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[188]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:14:01 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[188]/td//i[contains(@class,"edit")]" 2021-12-14 01:14:01 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[188]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:14:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:14:01 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:14:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:14:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:14:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:14:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:14:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:14:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:04 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:14:04 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:04 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:14:04 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:14:04 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:14:04 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:14:04 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:14:04 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:04 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:14:04 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:14:04 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:14:04 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:14:04 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:14:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:14:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:14:04 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:04 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:14:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:14:04 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:14:04 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:04 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:14:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:14:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:14:04 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:04 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:14:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:14:04 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:14:04 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:14:04 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:14:04 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:05 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:14:05 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:14:05 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:14:05 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:14:05 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:14:05 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:14:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:14:12 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:14:12 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:14:12 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[189]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:14:12 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[189]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:12 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[189]/td//i[contains(@class,"edit")] found." 2021-12-14 01:14:12 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[189]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:12 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[189]/td//i[contains(@class,"edit")] found." 2021-12-14 01:14:12 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[189]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:14:12 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[189]/td//i[contains(@class,"edit")]" 2021-12-14 01:14:12 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[189]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:14:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:14:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:14:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:14:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:14:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:14:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:14:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:14:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:15 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:14:15 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:15 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:14:15 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:14:15 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:14:15 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:14:15 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:14:15 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:15 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:14:15 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:14:15 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:14:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:14:15 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:14:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:14:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:14:15 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:15 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:14:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:14:15 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:14:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:14:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:14:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:14:16 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:16 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:14:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:14:16 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:14:16 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:14:16 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:14:16 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:16 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:14:16 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:14:16 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:14:16 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:14:16 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:14:16 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:14:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:14:23 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:14:23 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:14:23 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[190]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:14:23 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[190]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:23 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[190]/td//i[contains(@class,"edit")] found." 2021-12-14 01:14:23 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[190]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:23 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[190]/td//i[contains(@class,"edit")] found." 2021-12-14 01:14:23 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[190]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:14:23 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[190]/td//i[contains(@class,"edit")]" 2021-12-14 01:14:23 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[190]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:14:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:14:23 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:14:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:14:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:14:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:14:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:14:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:14:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:14:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:14:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:14:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:14:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:14:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:14:26 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:26 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:14:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:14:26 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:14:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:14:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:14:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:14:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:14:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:14:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:14:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:14:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:14:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:14:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:14:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:14:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:14:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:14:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:14:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:14:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:14:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:14:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:14:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:14:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:14:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:14:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:14:34 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:14:34 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:14:34 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[191]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:14:34 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[191]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:34 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[191]/td//i[contains(@class,"edit")] found." 2021-12-14 01:14:34 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[191]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:34 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[191]/td//i[contains(@class,"edit")] found." 2021-12-14 01:14:34 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[191]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:14:34 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[191]/td//i[contains(@class,"edit")]" 2021-12-14 01:14:34 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[191]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:14:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:14:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:14:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:14:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:14:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:14:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:14:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:14:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:14:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:14:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:14:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:14:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:14:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:14:37 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:37 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:14:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:14:37 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:14:37 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:14:37 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:14:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:14:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:14:37 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:37 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:14:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:14:37 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:14:37 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:38 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:14:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:14:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:14:38 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:38 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:14:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:14:38 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:14:38 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:14:38 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:14:38 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:38 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:14:38 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:14:38 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:14:38 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:14:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:14:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:14:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:14:46 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:14:46 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:14:46 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[192]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:14:46 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[192]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:46 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[192]/td//i[contains(@class,"edit")] found." 2021-12-14 01:14:46 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[192]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:46 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[192]/td//i[contains(@class,"edit")] found." 2021-12-14 01:14:46 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[192]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:14:46 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[192]/td//i[contains(@class,"edit")]" 2021-12-14 01:14:46 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[192]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:14:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:14:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:14:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:46 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:46 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:46 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:46 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:14:46 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:46 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:14:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:46 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:46 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:46 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:46 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:14:46 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:46 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:14:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:14:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:49 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:14:49 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:49 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:14:49 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:14:49 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:14:49 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:14:49 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:14:49 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:49 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:14:49 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:14:49 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:14:49 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:14:49 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:14:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:14:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:14:49 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:49 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:14:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:14:49 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:14:49 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:49 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:14:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:14:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:14:49 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:49 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:14:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:14:49 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:14:49 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:14:49 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:14:49 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:49 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:14:49 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:14:49 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:14:49 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:14:49 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:14:49 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:14:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:14:58 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:14:58 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:14:58 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[193]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:14:58 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[193]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:58 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[193]/td//i[contains(@class,"edit")] found." 2021-12-14 01:14:58 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[193]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:58 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[193]/td//i[contains(@class,"edit")] found." 2021-12-14 01:14:58 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[193]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:14:58 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[193]/td//i[contains(@class,"edit")]" 2021-12-14 01:14:58 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[193]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:14:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:14:58 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:59 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:59 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:59 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:14:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:59 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:14:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:59 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:59 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:59 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:59 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:14:59 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:59 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:14:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:14:59 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:59 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:59 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:14:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:14:59 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:14:59 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:14:59 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:15:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:15:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:01 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:15:01 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:01 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:15:01 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:15:01 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:15:01 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:15:01 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:15:01 - BaseElement - INFO - Waiting for element //span[text()="Command And Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:01 - BaseElement - INFO - Element //span[text()="Command And Feedback"]/.. found." 2021-12-14 01:15:01 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command And Feedback"]/.." 2021-12-14 01:15:01 - BaseElement - INFO - Element with xpath //span[text()="Command And Feedback"]/.. was clicked" 2021-12-14 01:15:01 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:15:01 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:15:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:15:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:15:01 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:01 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:15:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:15:01 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:15:01 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:01 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:15:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:15:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:15:01 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:01 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:15:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:15:01 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:15:01 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:15:01 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:15:01 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:01 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:15:01 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:15:01 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:15:01 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:15:02 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:15:02 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:15:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:15:09 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:15:09 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:15:09 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[194]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:15:09 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[194]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:09 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[194]/td//i[contains(@class,"edit")] found." 2021-12-14 01:15:09 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[194]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:09 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[194]/td//i[contains(@class,"edit")] found." 2021-12-14 01:15:09 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[194]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:15:09 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[194]/td//i[contains(@class,"edit")]" 2021-12-14 01:15:09 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[194]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:15:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:15:09 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:10 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:10 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:15:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:10 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:10 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:10 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:10 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:15:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:10 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:15:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:10 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:10 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:10 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:10 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:15:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:10 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:15:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:15:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:12 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:15:12 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:12 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:15:12 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:15:12 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:15:13 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:15:13 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:15:13 - BaseElement - INFO - Waiting for element //span[text()="Command"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:13 - BaseElement - INFO - Element //span[text()="Command"]/.. found." 2021-12-14 01:15:13 - BaseElement - INFO - Trying to click element with xpath //span[text()="Command"]/.." 2021-12-14 01:15:13 - BaseElement - INFO - Element with xpath //span[text()="Command"]/.. was clicked" 2021-12-14 01:15:13 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:15:13 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:15:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:15:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:15:13 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:13 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:15:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:15:13 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:15:13 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:13 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:15:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:15:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:15:13 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:13 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:15:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:15:13 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:15:13 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:15:13 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:15:13 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:13 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:15:13 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:15:13 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:15:13 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:15:14 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:15:14 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:15:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:15:21 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:15:21 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:15:21 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[195]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:15:21 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[195]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:21 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[195]/td//i[contains(@class,"edit")] found." 2021-12-14 01:15:21 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[195]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:21 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[195]/td//i[contains(@class,"edit")] found." 2021-12-14 01:15:21 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[195]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:15:21 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[195]/td//i[contains(@class,"edit")]" 2021-12-14 01:15:21 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[195]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:15:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:15:21 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:21 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:21 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:21 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:15:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:21 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:15:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:15:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:15:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:15:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:15:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:23 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:15:23 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:23 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:15:23 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:15:23 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:15:23 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:15:23 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:15:23 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:24 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:15:24 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:15:24 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:15:24 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:15:24 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:15:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:15:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:15:24 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:24 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:15:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:15:24 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:15:24 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:24 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:15:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:15:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:15:24 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:24 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:15:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:15:24 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:15:24 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:15:24 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:15:24 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:24 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:15:24 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:15:24 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:15:24 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:15:24 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:15:24 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:15:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:15:31 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:15:31 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:15:31 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[196]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:15:31 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[196]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:31 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[196]/td//i[contains(@class,"edit")] found." 2021-12-14 01:15:31 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[196]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:31 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[196]/td//i[contains(@class,"edit")] found." 2021-12-14 01:15:31 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[196]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:15:31 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[196]/td//i[contains(@class,"edit")]" 2021-12-14 01:15:31 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[196]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:15:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:15:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:15:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:15:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:15:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:15:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:15:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:15:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:35 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:15:35 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:35 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:15:35 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:15:35 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:15:35 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:15:35 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:15:35 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:35 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:15:35 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:15:35 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:15:35 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:15:35 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:15:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:15:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:15:35 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:35 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:15:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:15:35 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:15:35 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:35 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:15:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:15:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:15:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:15:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:15:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:15:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:15:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:15:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:15:36 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:15:36 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:15:36 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:15:36 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:15:36 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:15:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:15:43 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:15:43 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:15:43 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[197]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:15:43 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[197]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:43 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[197]/td//i[contains(@class,"edit")] found." 2021-12-14 01:15:43 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[197]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:43 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[197]/td//i[contains(@class,"edit")] found." 2021-12-14 01:15:43 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[197]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:15:43 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[197]/td//i[contains(@class,"edit")]" 2021-12-14 01:15:44 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[197]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:15:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:15:44 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:44 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:44 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:15:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:15:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:15:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:15:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:15:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:15:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:15:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:15:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:15:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:15:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:15:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:15:46 - BaseElement - INFO - Waiting for element //span[text()="Feedback"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:46 - BaseElement - INFO - Element //span[text()="Feedback"]/.. found." 2021-12-14 01:15:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Feedback"]/.." 2021-12-14 01:15:46 - BaseElement - INFO - Element with xpath //span[text()="Feedback"]/.. was clicked" 2021-12-14 01:15:46 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:15:46 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:15:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:15:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:15:46 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:46 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:15:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:15:46 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:15:46 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:46 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:15:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:15:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:15:46 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:46 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:15:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:15:46 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:15:47 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:15:47 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:15:47 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:47 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:15:47 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:15:47 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:15:47 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:15:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:15:47 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:15:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:15:55 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:15:55 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:15:55 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[198]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:15:55 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[198]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:55 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[198]/td//i[contains(@class,"edit")] found." 2021-12-14 01:15:55 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[198]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:55 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[198]/td//i[contains(@class,"edit")] found." 2021-12-14 01:15:55 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[198]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:15:55 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[198]/td//i[contains(@class,"edit")]" 2021-12-14 01:15:55 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[198]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:15:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:15:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:15:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:15:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:15:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:15:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:15:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:15:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:15:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:15:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:15:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:58 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:15:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:58 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:15:58 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:15:58 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:15:58 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:15:58 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:15:59 - BaseElement - INFO - Waiting for element //span[text()="Configuration"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:59 - BaseElement - INFO - Element //span[text()="Configuration"]/.. found." 2021-12-14 01:15:59 - BaseElement - INFO - Trying to click element with xpath //span[text()="Configuration"]/.." 2021-12-14 01:15:59 - BaseElement - INFO - Element with xpath //span[text()="Configuration"]/.. was clicked" 2021-12-14 01:15:59 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:15:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:15:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:15:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:15:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:15:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:15:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:15:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:15:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:15:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:15:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:15:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:15:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:15:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:15:59 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:15:59 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:15:59 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:15:59 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:15:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:15:59 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:15:59 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:15:59 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:15:59 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:16:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:16:08 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 01:16:08 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" -----------------------------Captured log teardown------------------------------ 2021-12-14 01:16:21 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_edycja_wszystkich_datapointow.png" | |||
| Failed | tests/Asset_Template_tests/Functional_tests/test_datapoints_and_properties.py::test_dodanie_wszystkich_properties | 3514.42 | |
|
asset_templates_page = <frontend.objects.Pages.asset_templates_page.AssetTemplatesPage object at 0x000002744B93AF10> @pytest.mark.order(20) def test_dodanie_wszystkich_properties(asset_templates_page): """ Test do dodania wszystkich standardowych properties WARUNKI WSTĘPNE: - Jestem na stronie Asset templates - Jestem w trybie edycji Asset template'u" OPIS KROKU: 1. Kliknij przycisk 'Add property' 2. Wybierz każdy standardowe standardowe property, poddaj edycji i zapisz OCZEKIWANY REZULTAT: 1. Okno dialogowe dla dodania property zostało wyświetlone 2. Dodano wszystkie standardowe properties """ # Preconditions assert asset_templates_page.url == asset_templates_page.driver.current_url template_table = asset_templates_page.template_table(table_name='Central').get_table( unique_column_name='TEMPLATE NAME') assert template_table[TEMPLATE_FUNCTIONAL_TESTS]['TEMPLATE NAME'] == TEMPLATE_FUNCTIONAL_TESTS asset_templates_page.template_table('Central').edit_row(unique_column_name='TEMPLATE NAME', row_name=TEMPLATE_FUNCTIONAL_TESTS) # add_template_modal = asset_templates_page.click_add_button('Central') # template_name = f'{create_random_string(5)} {create_random_string(5)}' # add_template_modal.set_template_name(template_name) # add_template_modal.set_template_type('Boiler') # add_template_modal.save() # asset_templates_page.template_table('Central').edit_row(unique_column_name='TEMPLATE NAME', # row_name=template_name) # step 1 asset_templates_page.open_tab('Properties') datapoint_modal = asset_templates_page.click_add_property() datapoint_names_and_categories = datapoint_modal.get_datapoint_names() datapoint_modal.close() # step 2 datpoint_names = [] failing_datapoints = [] for category in datapoint_names_and_categories: for subcategory in datapoint_names_and_categories[category]: if len(datapoint_names_and_categories[category][subcategory]) > 0: for datapoint in datapoint_names_and_categories[category][subcategory]: asset_templates_page.click_add_property() datapoint_modal.click_choose_datapoint(category=category, subcategory=subcategory, datapoint=datapoint) datapoint_name = f'{category}-{subcategory}-{datapoint}' datapoint_name = datapoint_name[0:30] + create_random_string(2) datpoint_names.append(datapoint_name) datapoint_modal.set_name(datapoint_name) datapoint_modal.set_type(datapoint_modal.properties_types[random.randint(0, 1)]) datapoint_modal.tags.set_new_tag(create_random_string(5)) try: > datapoint_modal.save() tests\Asset_Template_tests\Functional_tests\test_datapoints_and_properties.py:191: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <frontend.objects.Modals.add_datapoint_property_modal.AddDatapointPropertyModal object at 0x000002744B93A2E0> def save(self) -> None: """ Kliknięcie przycisku 'save' lub 'accept' :return: """ save_button = self.get_element((self.save_xpath, 'Button')) save_button.click() > save_button.wait_for_element_to_disappear(timeout=30) frontend\objects\Modals\base_modal.py:29: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <frontend.elements.button.Button object at 0x000002744CB4A6D0> timeout = 30, poll_frequency = 0.1 def wait_for_element_to_disappear(self, timeout: int = 5, poll_frequency: float = 0.1) -> None: """ Oczekiwanie na zniknięcie elementu :param timeout: maksymalny czas czekania na element :param poll_frequency: czas próbkowania co jaki jest sprawdzana widoczność elementu """ self.logger.info(f'Waiting for element to disappear {self.xpath} with poll frequency {poll_frequency} and timeout {timeout}') > WebDriverWait(self.driver, timeout, poll_frequency).until( invisibility_of_element_located((By.XPATH, self.xpath)), message=f'Element is still visible in timeout {timeout}s.') frontend\elements\base_element.py:77: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <[AttributeError("'WebElement' object has no attribute 'session_id'") raised in repr()] WebDriverWait object at 0x2744cb4ac40> method = <selenium.webdriver.support.expected_conditions.invisibility_of_element_located object at 0x000002744CB4ABE0> message = 'Element is still visible in timeout 30s.' def until(self, method, message=''): """Calls the method provided with the driver as an argument until the \ return value is not False.""" screen = None stacktrace = None end_time = time.time() + self._timeout while True: try: value = method(self._driver) if value: return value except self._ignored_exceptions as exc: screen = getattr(exc, 'screen', None) stacktrace = getattr(exc, 'stacktrace', None) time.sleep(self._poll) if time.time() > end_time: break > raise TimeoutException(message, screen, stacktrace) E selenium.common.exceptions.TimeoutException: Message: Element is still visible in timeout 30s. C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\support\wait.py:80: TimeoutException During handling of the above exception, another exception occurred: self = <frontend.elements.button.Button object at 0x000002744CB4A9A0> def click(self) -> None: """ Click on a element :return: """ self.logger.info(f'Trying to click element with xpath {self.xpath}') try: > self.driver.click() frontend\elements\base_element.py:33: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.remote.webelement.WebElement (session="52c6a7b55afe6c7d13c82953b192ce35", element="4994fbfa-9e07-4ea2-af2f-351ddf003763")> def click(self): """Clicks the element.""" > self._execute(Command.CLICK_ELEMENT) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\webelement.py:80: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.remote.webelement.WebElement (session="52c6a7b55afe6c7d13c82953b192ce35", element="4994fbfa-9e07-4ea2-af2f-351ddf003763")> command = 'clickElement' params = {'id': '4994fbfa-9e07-4ea2-af2f-351ddf003763', 'sessionId': '52c6a7b55afe6c7d13c82953b192ce35'} def _execute(self, command, params=None): """Executes a command against the underlying HTML element. Args: command: The name of the command to _execute as a string. params: A dictionary of named parameters to send with the command. Returns: The command's JSON response loaded into a dictionary object. """ if not params: params = {} params['id'] = self._id > return self._parent.execute(command, params) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\webelement.py:633: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.chrome.webdriver.WebDriver (session="52c6a7b55afe6c7d13c82953b192ce35")> driver_command = 'clickElement' params = {'id': '4994fbfa-9e07-4ea2-af2f-351ddf003763'} def execute(self, driver_command, params=None): """ Sends a command to be executed by a command.CommandExecutor. :Args: - driver_command: The name of the command to execute as a string. - params: A dictionary of named parameters to send with the command. :Returns: The command's JSON response loaded into a dictionary object. """ if self.session_id is not None: if not params: params = {'sessionId': self.session_id} elif 'sessionId' not in params: params['sessionId'] = self.session_id params = self._wrap_value(params) response = self.command_executor.execute(driver_command, params) if response: > self.error_handler.check_response(response) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\webdriver.py:321: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x000002744B9EABE0> response = {'status': 404, 'value': '{"value":{"error":"stale element reference","message":"stale element reference: element is n...unk [0x75FC6739+25]\\n\\tRtlGetFullPathName_UEx [0x77C28AFF+1215]\\n\\tRtlGetFullPathName_UEx [0x77C28ACD+1165]\\n"}}'} def check_response(self, response): """ Checks that a JSON response from the WebDriver does not have an error. :Args: - response - The JSON response from the WebDriver server as a dictionary object. :Raises: If the response contains an error message. """ status = response.get('status', None) if status is None or status == ErrorCode.SUCCESS: return value = None message = response.get("message", "") screen = response.get("screen", "") stacktrace = None if isinstance(status, int): value_json = response.get('value', None) if value_json and isinstance(value_json, basestring): import json try: value = json.loads(value_json) if len(value.keys()) == 1: value = value['value'] status = value.get('error', None) if status is None: status = value["status"] message = value["value"] if not isinstance(message, basestring): value = message message = message.get('message') else: message = value.get('message', None) except ValueError: pass exception_class = ErrorInResponseException if status in ErrorCode.NO_SUCH_ELEMENT: exception_class = NoSuchElementException elif status in ErrorCode.NO_SUCH_FRAME: exception_class = NoSuchFrameException elif status in ErrorCode.NO_SUCH_WINDOW: exception_class = NoSuchWindowException elif status in ErrorCode.STALE_ELEMENT_REFERENCE: exception_class = StaleElementReferenceException elif status in ErrorCode.ELEMENT_NOT_VISIBLE: exception_class = ElementNotVisibleException elif status in ErrorCode.INVALID_ELEMENT_STATE: exception_class = InvalidElementStateException elif status in ErrorCode.INVALID_SELECTOR \ or status in ErrorCode.INVALID_XPATH_SELECTOR \ or status in ErrorCode.INVALID_XPATH_SELECTOR_RETURN_TYPER: exception_class = InvalidSelectorException elif status in ErrorCode.ELEMENT_IS_NOT_SELECTABLE: exception_class = ElementNotSelectableException elif status in ErrorCode.ELEMENT_NOT_INTERACTABLE: exception_class = ElementNotInteractableException elif status in ErrorCode.INVALID_COOKIE_DOMAIN: exception_class = InvalidCookieDomainException elif status in ErrorCode.UNABLE_TO_SET_COOKIE: exception_class = UnableToSetCookieException elif status in ErrorCode.TIMEOUT: exception_class = TimeoutException elif status in ErrorCode.SCRIPT_TIMEOUT: exception_class = TimeoutException elif status in ErrorCode.UNKNOWN_ERROR: exception_class = WebDriverException elif status in ErrorCode.UNEXPECTED_ALERT_OPEN: exception_class = UnexpectedAlertPresentException elif status in ErrorCode.NO_ALERT_OPEN: exception_class = NoAlertPresentException elif status in ErrorCode.IME_NOT_AVAILABLE: exception_class = ImeNotAvailableException elif status in ErrorCode.IME_ENGINE_ACTIVATION_FAILED: exception_class = ImeActivationFailedException elif status in ErrorCode.MOVE_TARGET_OUT_OF_BOUNDS: exception_class = MoveTargetOutOfBoundsException elif status in ErrorCode.JAVASCRIPT_ERROR: exception_class = JavascriptException elif status in ErrorCode.SESSION_NOT_CREATED: exception_class = SessionNotCreatedException elif status in ErrorCode.INVALID_ARGUMENT: exception_class = InvalidArgumentException elif status in ErrorCode.NO_SUCH_COOKIE: exception_class = NoSuchCookieException elif status in ErrorCode.UNABLE_TO_CAPTURE_SCREEN: exception_class = ScreenshotException elif status in ErrorCode.ELEMENT_CLICK_INTERCEPTED: exception_class = ElementClickInterceptedException elif status in ErrorCode.INSECURE_CERTIFICATE: exception_class = InsecureCertificateException elif status in ErrorCode.INVALID_COORDINATES: exception_class = InvalidCoordinatesException elif status in ErrorCode.INVALID_SESSION_ID: exception_class = InvalidSessionIdException elif status in ErrorCode.UNKNOWN_METHOD: exception_class = UnknownMethodException else: exception_class = WebDriverException if value == '' or value is None: value = response['value'] if isinstance(value, basestring): if exception_class == ErrorInResponseException: raise exception_class(response, value) raise exception_class(value) if message == "" and 'message' in value: message = value['message'] screen = None if 'screen' in value: screen = value['screen'] stacktrace = None if 'stackTrace' in value and value['stackTrace']: stacktrace = [] try: for frame in value['stackTrace']: line = self._value_or_default(frame, 'lineNumber', '') file = self._value_or_default(frame, 'fileName', '<anonymous>') if line: file = "%s:%s" % (file, line) meth = self._value_or_default(frame, 'methodName', '<anonymous>') if 'className' in frame: meth = "%s.%s" % (frame['className'], meth) msg = " at %s (%s)" msg = msg % (meth, file) stacktrace.append(msg) except TypeError: pass if exception_class == ErrorInResponseException: raise exception_class(response, message) elif exception_class == UnexpectedAlertPresentException: alert_text = None if 'data' in value: alert_text = value['data'].get('text') elif 'alert' in value: alert_text = value['alert'].get('text') raise exception_class(message, screen, stacktrace, alert_text) > raise exception_class(message, screen, stacktrace) E selenium.common.exceptions.StaleElementReferenceException: Message: stale element reference: element is not attached to the page document E (Session info: chrome=96.0.4664.93) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\errorhandler.py:242: StaleElementReferenceException During handling of the above exception, another exception occurred: asset_templates_page = <frontend.objects.Pages.asset_templates_page.AssetTemplatesPage object at 0x000002744B93AF10> @pytest.mark.order(20) def test_dodanie_wszystkich_properties(asset_templates_page): """ Test do dodania wszystkich standardowych properties WARUNKI WSTĘPNE: - Jestem na stronie Asset templates - Jestem w trybie edycji Asset template'u" OPIS KROKU: 1. Kliknij przycisk 'Add property' 2. Wybierz każdy standardowe standardowe property, poddaj edycji i zapisz OCZEKIWANY REZULTAT: 1. Okno dialogowe dla dodania property zostało wyświetlone 2. Dodano wszystkie standardowe properties """ # Preconditions assert asset_templates_page.url == asset_templates_page.driver.current_url template_table = asset_templates_page.template_table(table_name='Central').get_table( unique_column_name='TEMPLATE NAME') assert template_table[TEMPLATE_FUNCTIONAL_TESTS]['TEMPLATE NAME'] == TEMPLATE_FUNCTIONAL_TESTS asset_templates_page.template_table('Central').edit_row(unique_column_name='TEMPLATE NAME', row_name=TEMPLATE_FUNCTIONAL_TESTS) # add_template_modal = asset_templates_page.click_add_button('Central') # template_name = f'{create_random_string(5)} {create_random_string(5)}' # add_template_modal.set_template_name(template_name) # add_template_modal.set_template_type('Boiler') # add_template_modal.save() # asset_templates_page.template_table('Central').edit_row(unique_column_name='TEMPLATE NAME', # row_name=template_name) # step 1 asset_templates_page.open_tab('Properties') datapoint_modal = asset_templates_page.click_add_property() datapoint_names_and_categories = datapoint_modal.get_datapoint_names() datapoint_modal.close() # step 2 datpoint_names = [] failing_datapoints = [] for category in datapoint_names_and_categories: for subcategory in datapoint_names_and_categories[category]: if len(datapoint_names_and_categories[category][subcategory]) > 0: for datapoint in datapoint_names_and_categories[category][subcategory]: asset_templates_page.click_add_property() datapoint_modal.click_choose_datapoint(category=category, subcategory=subcategory, datapoint=datapoint) datapoint_name = f'{category}-{subcategory}-{datapoint}' datapoint_name = datapoint_name[0:30] + create_random_string(2) datpoint_names.append(datapoint_name) datapoint_modal.set_name(datapoint_name) datapoint_modal.set_type(datapoint_modal.properties_types[random.randint(0, 1)]) datapoint_modal.tags.set_new_tag(create_random_string(5)) try: datapoint_modal.save() except: failing_datapoints.append(datapoint_modal.get_name()) > datapoint_modal.cancel() tests\Asset_Template_tests\Functional_tests\test_datapoints_and_properties.py:194: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ frontend\objects\Modals\base_modal.py:36: in cancel self.get_element((self.cancel_xpath, 'Button')).click() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <frontend.elements.button.Button object at 0x000002744CB4A9A0> def click(self) -> None: """ Click on a element :return: """ self.logger.info(f'Trying to click element with xpath {self.xpath}') try: self.driver.click() except StaleElementReferenceException: self.logger.warn('StaleElementReferenceException occurred. Trying to refresh driver.') > self.driver.refresh() E AttributeError: 'WebElement' object has no attribute 'refresh' frontend\elements\base_element.py:36: AttributeError -------------------------------Captured log setup------------------------------- 2021-12-14 01:16:26 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 01:16:26 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:26 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 01:16:26 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:26 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 01:16:26 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 01:16:26 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 01:16:26 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 01:16:26 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 01:16:26 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:26 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 01:16:26 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:26 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 01:16:26 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 01:16:26 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 01:16:26 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:26 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 01:16:26 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 01:16:26 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:26 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 01:16:26 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:26 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 01:16:26 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 01:16:26 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 01:16:26 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:26 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 01:16:27 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 01:16:27 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:27 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 01:16:27 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:27 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 01:16:27 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 01:16:27 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 01:16:27 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 01:16:27 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 01:16:27 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:28 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 01:16:28 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:28 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 01:16:28 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 01:16:28 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:28 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 01:16:28 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_myfunctions"]', 'Base')" 2021-12-14 01:16:28 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_myfunctions"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:28 - MenuPage - INFO - Element //*[@id="widget-carousel_myfunctions"] found." 2021-12-14 01:16:28 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_myfunctions"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:28 - BaseElement - INFO - Element //*[@id="widget-carousel_myfunctions"] found." 2021-12-14 01:16:28 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_myfunctions"]', 'Base')" 2021-12-14 01:16:28 - BaseElement - INFO - Trying to click element with xpath //*[@id="widget-carousel_myfunctions"]" 2021-12-14 01:16:28 - BaseElement - INFO - Element with xpath //*[@id="widget-carousel_myfunctions"] was clicked" 2021-12-14 01:16:28 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Central']/ancestor::span//button", 'Button')" 2021-12-14 01:16:28 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:30 - AssetTemplatesPage - INFO - Element //*[text()='Central']/ancestor::span//button found." 2021-12-14 01:16:30 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:30 - Button - INFO - Element //*[text()='Central']/ancestor::span//button found." 2021-12-14 01:16:30 - AssetTemplatesPage - INFO - Found element ("//*[text()='Central']/ancestor::span//button", 'Button')" 2021-12-14 01:16:30 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:30 - Button - INFO - Element //*[text()='Central']/ancestor::span//button found." -------------------------------Captured log call-------------------------------- 2021-12-14 01:16:30 - AssetTemplatesPage - INFO - Trying to format the element ("//*[text()='{}']/ancestor::span//table", 'Table') with data ('Central',)" 2021-12-14 01:16:30 - AssetTemplatesPage - INFO - Trying to find component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 01:16:30 - AssetTemplatesPage - INFO - Found component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 01:16:31 - AssetTemplatesPage - INFO - Trying to format the element ("//*[text()='{}']/ancestor::span//table", 'Table') with data ('Central',)" 2021-12-14 01:16:31 - AssetTemplatesPage - INFO - Trying to find component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 01:16:31 - AssetTemplatesPage - INFO - Found component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 01:16:31 - Table - INFO - Trying to find element ('//*[text()=\'Central\']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:16:31 - Table - INFO - Waiting for element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:31 - Table - INFO - Element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] found." 2021-12-14 01:16:31 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:31 - Button - INFO - Element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] found." 2021-12-14 01:16:31 - Table - INFO - Found element ('//*[text()=\'Central\']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 01:16:31 - Button - INFO - Trying to click element with xpath //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")]" 2021-12-14 01:16:31 - Button - INFO - Element with xpath //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 01:16:31 - AssetTemplatesPage - INFO - Trying to find element ("//a[text()='Properties']//ancestor::li", 'Base')" 2021-12-14 01:16:31 - AssetTemplatesPage - INFO - Waiting for element //a[text()='Properties']//ancestor::li with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:31 - AssetTemplatesPage - INFO - Element //a[text()='Properties']//ancestor::li found." 2021-12-14 01:16:31 - BaseElement - INFO - Waiting for element //a[text()='Properties']//ancestor::li with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:31 - BaseElement - INFO - Element //a[text()='Properties']//ancestor::li found." 2021-12-14 01:16:31 - AssetTemplatesPage - INFO - Found element ("//a[text()='Properties']//ancestor::li", 'Base')" 2021-12-14 01:16:31 - BaseElement - INFO - Trying to click element with xpath //a[text()='Properties']//ancestor::li" 2021-12-14 01:16:31 - BaseElement - INFO - Element with xpath //a[text()='Properties']//ancestor::li was clicked" 2021-12-14 01:16:31 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:16:31 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:31 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:16:31 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:31 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:16:31 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:16:31 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:16:32 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:16:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:16:32 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:32 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:16:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:16:32 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:16:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//div[@class='ReactModalPortal']//i[contains(@class, 'close_24')]", 'Button')" 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Element //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] found." 2021-12-14 01:16:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:59 - Button - INFO - Element //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] found." 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Found element ("//div[@class='ReactModalPortal']//i[contains(@class, 'close_24')]", 'Button')" 2021-12-14 01:16:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')]" 2021-12-14 01:16:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] was clicked" 2021-12-14 01:16:59 - Button - INFO - Waiting for element to disappear //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] with poll frequency 0.1 and timeout 5" 2021-12-14 01:16:59 - Button - INFO - Element //div[@class='ReactModalPortal']//i[contains(@class, 'close_24')] disappeared." 2021-12-14 01:16:59 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:16:59 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:59 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:16:59 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:59 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:16:59 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:16:59 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:16:59 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:16:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:59 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:16:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:59 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 01:16:59 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:59 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 01:16:59 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 01:16:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. found." 2021-12-14 01:16:59 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 01:16:59 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm'] was clicked" 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC']", 'Base')" 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC'] found." 2021-12-14 01:16:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:16:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC'] found." 2021-12-14 01:16:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC']", 'Base')" 2021-12-14 01:16:59 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC']" 2021-12-14 01:17:00 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NC'] was clicked" 2021-12-14 01:17:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:17:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:17:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:17:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:17:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:17:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:17:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:17:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:01 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:17:01 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:01 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:17:01 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:17:01 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:17:01 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:17:01 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:17:01 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:01 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:17:01 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:17:01 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:17:01 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:17:01 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:17:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:17:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:17:01 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:01 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:17:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:17:01 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:17:01 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:01 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:17:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:17:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:17:02 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:02 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:17:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:17:02 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:17:02 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:17:02 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:17:02 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:02 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:17:02 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:17:02 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:17:02 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:17:02 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:17:02 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:17:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:17:09 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:17:09 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:09 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:17:09 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:09 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:17:09 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:17:09 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:17:09 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:17:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 01:17:09 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:09 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 01:17:09 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 01:17:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. found." 2021-12-14 01:17:09 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 01:17:09 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm'] was clicked" 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO']", 'Base')" 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO'] found." 2021-12-14 01:17:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO'] found." 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO']", 'Base')" 2021-12-14 01:17:09 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO']" 2021-12-14 01:17:09 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Default NO'] was clicked" 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:17:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:10 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:17:10 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:10 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:17:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:17:10 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:17:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:10 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:17:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:17:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:11 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:17:11 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:11 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:17:11 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:17:11 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:17:11 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:17:11 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:17:11 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:11 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:17:11 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:17:11 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:17:11 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:17:11 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:17:11 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:17:11 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:11 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:17:11 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:11 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:17:11 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:17:11 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:17:11 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:11 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:17:11 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:17:11 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:11 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:17:11 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:11 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:17:11 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:17:11 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:17:12 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:17:12 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:17:12 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:12 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:17:12 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:17:12 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:17:12 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:17:12 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:17:12 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:17:18 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:17:18 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:17:18 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:18 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:17:18 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:18 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:17:18 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:17:18 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:17:19 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:17:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 01:17:19 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:19 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 01:17:19 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 01:17:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. found." 2021-12-14 01:17:19 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 01:17:19 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm'] was clicked" 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault']", 'Base')" 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault'] found." 2021-12-14 01:17:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault'] found." 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault']", 'Base')" 2021-12-14 01:17:19 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault']" 2021-12-14 01:17:19 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fault'] was clicked" 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:17:19 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:19 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:17:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:17:19 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:17:19 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:19 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:17:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:17:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:20 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:17:20 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:20 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:17:20 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:17:20 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:17:20 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:17:20 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:17:20 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:20 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:17:20 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:17:21 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:17:21 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:17:21 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:17:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:17:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:17:21 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:21 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:17:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:17:21 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:17:21 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:21 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:17:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:17:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:17:21 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:21 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:17:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:17:21 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:17:21 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:17:21 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:17:21 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:21 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:17:21 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:17:21 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:17:21 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:17:21 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:17:21 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:17:28 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:17:28 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:17:28 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:28 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:17:28 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:28 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:17:28 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:17:28 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:17:29 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:17:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 01:17:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 01:17:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 01:17:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. found." 2021-12-14 01:17:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 01:17:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm'] was clicked" 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire']", 'Base')" 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire'] found." 2021-12-14 01:17:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire'] found." 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire']", 'Base')" 2021-12-14 01:17:29 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire']" 2021-12-14 01:17:29 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='Fire'] was clicked" 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:17:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:29 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:17:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:17:29 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:17:29 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:29 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:17:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:17:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:30 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:17:30 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:30 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:17:30 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:17:30 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:17:30 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:17:30 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:17:30 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:30 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:17:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:17:31 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:17:31 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:17:31 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:17:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:17:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:17:31 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:31 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:17:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:17:31 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:17:31 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:31 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:17:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:17:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:17:31 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:31 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:17:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:17:31 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:17:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:17:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:17:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:17:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:17:31 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:17:31 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:17:31 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:17:31 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:17:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:17:38 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:17:38 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:38 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:17:38 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:38 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:17:38 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:17:38 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:17:38 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:17:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:17:38 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:38 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:38 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:17:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 01:17:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 01:17:38 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:38 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm'] found." 2021-12-14 01:17:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']", 'Expandable')" 2021-12-14 01:17:38 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 01:17:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/.. found." 2021-12-14 01:17:38 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']" 2021-12-14 01:17:38 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm'] was clicked" 2021-12-14 01:17:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off']", 'Base')" 2021-12-14 01:17:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off'] found." 2021-12-14 01:17:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off'] found." 2021-12-14 01:17:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off']", 'Base')" 2021-12-14 01:17:38 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off']" 2021-12-14 01:17:39 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Alarm']/../..//*[text()='On/Off'] was clicked" 2021-12-14 01:17:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:17:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:39 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:17:39 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:39 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:17:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:17:39 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:17:39 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:39 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:17:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:17:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:40 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:17:40 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:40 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:17:40 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:17:40 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:17:40 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:17:40 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:17:40 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:40 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:17:40 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:17:40 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:17:40 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:17:40 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:17:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:17:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:17:40 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:40 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:17:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:17:40 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:17:40 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:40 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:17:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:17:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:17:40 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:40 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:17:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:17:40 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:17:41 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:17:41 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:17:41 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:41 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:17:41 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:17:41 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:17:41 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:17:41 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:17:41 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:17:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:17:48 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:17:48 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:48 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:17:48 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:48 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:17:48 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:17:48 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:17:48 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:17:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:17:48 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:48 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:48 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:17:48 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:48 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:17:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:48 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:17:48 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:48 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:17:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:17:48 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:17:48 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:48 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:17:48 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:17:48 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:17:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']", 'Expandable')" 2021-12-14 01:17:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:48 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] found." 2021-12-14 01:17:48 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:48 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] found." 2021-12-14 01:17:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']", 'Expandable')" 2021-12-14 01:17:48 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']" 2021-12-14 01:17:48 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:48 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/.. found." 2021-12-14 01:17:48 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']" 2021-12-14 01:17:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] was clicked" 2021-12-14 01:17:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day']", 'Base')" 2021-12-14 01:17:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day'] found." 2021-12-14 01:17:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day'] found." 2021-12-14 01:17:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day']", 'Base')" 2021-12-14 01:17:49 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day']" 2021-12-14 01:17:49 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Day'] was clicked" 2021-12-14 01:17:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:17:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:49 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:17:49 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:49 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:17:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:17:49 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:17:49 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:49 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:17:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:17:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:51 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:17:51 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:51 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:17:51 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:17:51 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:17:51 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:17:51 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:17:51 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:51 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:17:51 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:17:51 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:17:51 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:17:51 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:17:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:17:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:17:51 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:51 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:17:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:17:51 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:17:51 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:51 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:17:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:17:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:17:51 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:51 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:17:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:17:51 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:17:51 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:17:51 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:17:51 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:17:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:17:52 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:17:52 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:17:52 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:17:52 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:17:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:17:59 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:17:59 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:59 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:17:59 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:59 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:17:59 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:17:59 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:17:59 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:59 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:17:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:59 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:17:59 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:59 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:17:59 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:17:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:17:59 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:17:59 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']", 'Expandable')" 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] found." 2021-12-14 01:17:59 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:59 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] found." 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']", 'Expandable')" 2021-12-14 01:17:59 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']" 2021-12-14 01:17:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:17:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/.. found." 2021-12-14 01:17:59 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']" 2021-12-14 01:17:59 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] was clicked" 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month']", 'Base')" 2021-12-14 01:17:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month'] found." 2021-12-14 01:18:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month'] found." 2021-12-14 01:18:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month']", 'Base')" 2021-12-14 01:18:00 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month']" 2021-12-14 01:18:00 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Month'] was clicked" 2021-12-14 01:18:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:18:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:18:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:18:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:18:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:18:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:18:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:18:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:02 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:18:02 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:02 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:18:02 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:18:02 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:18:02 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:18:02 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:18:02 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:02 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:18:02 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:18:02 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:18:02 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:18:02 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:18:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:18:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:18:02 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:02 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:18:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:18:02 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:18:02 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:02 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:18:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:18:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:18:02 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:02 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:18:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:18:02 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:18:02 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:18:02 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:18:02 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:02 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:18:02 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:18:02 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:18:02 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:18:03 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:18:03 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:18:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:18:10 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:18:10 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:10 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:18:10 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:10 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:18:10 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:18:10 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:18:10 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:18:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:18:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:18:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:18:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:18:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:18:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:18:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']", 'Expandable')" 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] found." 2021-12-14 01:18:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] found." 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']", 'Expandable')" 2021-12-14 01:18:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']" 2021-12-14 01:18:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/.. found." 2021-12-14 01:18:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']" 2021-12-14 01:18:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date'] was clicked" 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year']", 'Base')" 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year'] found." 2021-12-14 01:18:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year'] found." 2021-12-14 01:18:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year']", 'Base')" 2021-12-14 01:18:11 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year']" 2021-12-14 01:18:11 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Date']/../..//*[contains(@class,'depth2')]//*[text()='Year'] was clicked" 2021-12-14 01:18:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:18:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:18:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:18:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:18:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:18:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:18:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:18:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:12 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:18:12 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:13 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:18:13 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:18:13 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:18:13 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:18:13 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:18:13 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:13 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:18:13 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:18:13 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:18:13 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:18:13 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:18:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:18:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:18:13 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:13 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:18:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:18:13 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:18:13 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:13 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:18:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:18:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:18:13 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:13 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:18:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:18:13 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:18:13 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:18:13 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:18:13 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:13 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:18:13 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:18:13 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:18:13 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:18:14 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:18:14 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:18:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:18:21 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:18:21 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:21 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:18:21 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:21 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:18:21 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:18:21 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:18:21 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:18:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:18:21 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:21 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:18:21 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:18:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:18:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:18:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:18:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:18:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:18:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 01:18:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 01:18:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 01:18:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. found." 2021-12-14 01:18:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 01:18:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] was clicked" 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season']", 'Base')" 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season'] found." 2021-12-14 01:18:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season'] found." 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season']", 'Base')" 2021-12-14 01:18:22 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season']" 2021-12-14 01:18:22 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Season'] was clicked" 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:18:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:18:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:18:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:18:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:18:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:18:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:18:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:24 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:18:24 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:24 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:18:24 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:18:24 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:18:24 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:18:24 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:18:24 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:24 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:18:24 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:18:25 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:18:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:18:25 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:18:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:18:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:18:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:18:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:18:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:18:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:18:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:18:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:18:25 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:25 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:18:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:18:25 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:18:25 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:18:25 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:18:25 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:25 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:18:25 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:18:25 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:18:25 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:18:25 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:18:25 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:18:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:18:33 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:18:33 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:33 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:18:33 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:33 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:18:33 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:18:33 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:18:33 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:18:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:18:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:18:33 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:33 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:18:33 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:18:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:18:33 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:18:33 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 01:18:33 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:33 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 01:18:33 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 01:18:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. found." 2021-12-14 01:18:33 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 01:18:33 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] was clicked" 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start']", 'Base')" 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start'] found." 2021-12-14 01:18:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start'] found." 2021-12-14 01:18:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start']", 'Base')" 2021-12-14 01:18:34 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start']" 2021-12-14 01:18:34 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - Start'] was clicked" 2021-12-14 01:18:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:18:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:18:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:18:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:18:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:18:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:18:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:18:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:36 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:18:36 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:36 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:18:36 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:18:36 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:18:36 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:18:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:18:36 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:36 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:18:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:18:36 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:18:36 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:18:36 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:18:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:18:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:18:36 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:36 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:18:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:18:36 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:18:36 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:36 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:18:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:18:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:18:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:18:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:18:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:18:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:18:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:18:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:18:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:18:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:18:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:18:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:18:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:18:37 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:18:37 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:19:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:19:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:19:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:07 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:19:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:19:07 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:19:07 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:19:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 01:19:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 01:19:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 01:19:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 01:19:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]" 2021-12-14 01:19:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] was clicked" 2021-12-14 01:19:07 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:19:07 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:07 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:19:07 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:07 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:19:07 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:19:07 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:19:07 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:19:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:19:07 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:19:08 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:08 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:19:08 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:08 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:19:08 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:08 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:19:08 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:19:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:19:08 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:19:08 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 01:19:08 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:08 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 01:19:08 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 01:19:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. found." 2021-12-14 01:19:08 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 01:19:08 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] was clicked" 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End']", 'Base')" 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End'] found." 2021-12-14 01:19:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End'] found." 2021-12-14 01:19:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End']", 'Base')" 2021-12-14 01:19:08 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End']" 2021-12-14 01:19:09 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Heating Season - End'] was clicked" 2021-12-14 01:19:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:19:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:09 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:19:09 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:09 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:19:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:19:09 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:19:09 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:09 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:19:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:19:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:11 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:19:11 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:11 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:19:11 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:19:11 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:19:11 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:19:11 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:19:11 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:11 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:19:11 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:19:11 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:19:11 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:19:11 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:19:11 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:19:11 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:11 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:19:11 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:11 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:19:11 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:19:11 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:19:11 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:11 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:19:11 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:19:11 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:11 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:19:11 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:11 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:19:11 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:19:11 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:19:12 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:19:12 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:19:12 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:12 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:19:12 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:19:12 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:19:12 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:19:12 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:19:12 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:19:42 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:42 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:19:42 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:19:42 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:42 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 01:19:42 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 01:19:42 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]" 2021-12-14 01:19:42 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] was clicked" 2021-12-14 01:19:42 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:19:42 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:42 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:19:42 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:42 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:19:42 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:19:42 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:19:42 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:19:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:19:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:19:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:43 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:19:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:19:43 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:19:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:19:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:19:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:19:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 01:19:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 01:19:43 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:43 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 01:19:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 01:19:43 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 01:19:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. found." 2021-12-14 01:19:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 01:19:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] was clicked" 2021-12-14 01:19:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start']", 'Base')" 2021-12-14 01:19:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start'] found." 2021-12-14 01:19:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start'] found." 2021-12-14 01:19:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start']", 'Base')" 2021-12-14 01:19:43 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start']" 2021-12-14 01:19:43 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - Start'] was clicked" 2021-12-14 01:19:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:19:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:43 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:19:43 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:43 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:19:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:19:43 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:19:43 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:43 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:19:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:19:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:19:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:19:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:19:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:19:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:19:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:19:46 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:46 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:19:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:19:46 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:19:46 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:19:46 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:19:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:19:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:19:46 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:46 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:19:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:19:46 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:19:46 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:46 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:19:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:19:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:19:46 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:46 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:19:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:19:46 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:19:46 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:19:46 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:19:46 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:19:46 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:19:46 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:19:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:19:46 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:19:46 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:19:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:19:47 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:20:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:20:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:20:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 01:20:17 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 01:20:17 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]" 2021-12-14 01:20:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] was clicked" 2021-12-14 01:20:17 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:20:17 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:17 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:20:17 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:17 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:20:17 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:20:17 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:20:17 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:20:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:20:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:20:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:20:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:20:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:20:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:20:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:20:18 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:20:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 01:20:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:18 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 01:20:18 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:18 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] found." 2021-12-14 01:20:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']", 'Expandable')" 2021-12-14 01:20:18 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 01:20:18 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:18 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/.. found." 2021-12-14 01:20:18 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']" 2021-12-14 01:20:18 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season'] was clicked" 2021-12-14 01:20:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End']", 'Base')" 2021-12-14 01:20:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:18 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End'] found." 2021-12-14 01:20:18 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:18 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End'] found." 2021-12-14 01:20:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End']", 'Base')" 2021-12-14 01:20:18 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End']" 2021-12-14 01:20:18 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Season']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Season - End'] was clicked" 2021-12-14 01:20:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:20:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:18 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:20:18 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:18 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:20:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:20:18 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:20:18 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:18 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:20:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:20:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:20 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:20:20 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:20 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:20:20 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:20:20 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:20:21 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:20:21 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:20:21 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:21 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:20:21 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:20:21 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:20:21 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:20:21 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:20:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:20:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:20:21 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:21 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:20:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:20:21 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:20:21 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:21 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:20:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:20:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:20:21 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:21 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:20:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:20:21 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:20:21 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:20:21 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:20:21 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:21 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:20:21 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:20:21 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:20:21 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:20:21 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:20:21 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:20:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:20:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:20:52 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:52 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:20:52 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:20:52 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:52 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 01:20:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 01:20:52 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]" 2021-12-14 01:20:52 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] was clicked" 2021-12-14 01:20:52 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:20:52 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:52 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:20:52 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:52 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:20:52 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:20:52 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:20:52 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:20:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:20:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:20:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:20:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:20:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:20:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:20:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:20:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:20:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:20:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 01:20:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:20:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours']", 'Base')" 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours'] found." 2021-12-14 01:20:53 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:53 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours'] found." 2021-12-14 01:20:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours']", 'Base')" 2021-12-14 01:20:53 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours']" 2021-12-14 01:20:53 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Hours'] was clicked" 2021-12-14 01:20:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:20:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:20:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:20:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:20:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:20:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:20:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:20:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:55 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:20:55 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:55 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:20:55 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:20:55 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:20:55 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:20:55 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:20:55 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:55 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:20:55 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:20:55 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:20:55 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:20:55 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:20:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:20:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:20:55 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:55 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:20:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:20:55 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:20:55 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:55 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:20:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:20:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:20:55 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:55 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:20:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:20:55 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:20:56 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:20:56 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:20:56 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:20:56 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:20:56 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:20:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:20:56 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:20:56 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:20:56 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:20:56 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:21:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:21:04 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:21:04 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:04 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:21:04 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:04 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:21:04 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:21:04 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:21:04 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:21:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:21:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:21:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:21:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:21:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:21:04 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:21:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:21:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:21:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 01:21:04 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:21:04 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes']", 'Base')" 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes'] found." 2021-12-14 01:21:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes'] found." 2021-12-14 01:21:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes']", 'Base')" 2021-12-14 01:21:05 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes']" 2021-12-14 01:21:05 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Minutes'] was clicked" 2021-12-14 01:21:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:21:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:05 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:21:05 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:05 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:21:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:21:05 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:21:05 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:05 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:21:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:21:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:07 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:21:07 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:07 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:21:07 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:21:07 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:21:07 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:21:07 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:21:07 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:07 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:21:07 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:21:07 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:21:07 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:21:07 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:21:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:21:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:21:07 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:07 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:21:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:21:07 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:21:07 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:07 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:21:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:21:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:21:08 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:08 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:21:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:21:08 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:21:08 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:21:08 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:21:08 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:08 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:21:08 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:21:08 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:21:08 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:21:08 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:21:08 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:21:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:21:16 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:21:16 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:16 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:21:16 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:16 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:21:16 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:21:16 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:21:17 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:21:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:21:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:21:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:21:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:21:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:21:17 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:21:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:21:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:21:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 01:21:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:21:17 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds']", 'Base')" 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds'] found." 2021-12-14 01:21:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds'] found." 2021-12-14 01:21:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds']", 'Base')" 2021-12-14 01:21:17 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds']" 2021-12-14 01:21:18 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Seconds'] was clicked" 2021-12-14 01:21:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:21:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:18 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:21:18 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:18 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:21:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:21:18 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:21:18 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:18 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:21:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:21:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:19 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:21:19 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:19 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:21:19 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:21:19 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:21:19 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:21:19 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:21:19 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:19 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:21:19 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:21:20 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:21:20 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:21:20 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:21:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:21:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:21:20 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:20 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:21:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:21:20 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:21:20 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:20 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:21:20 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:21:20 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:20 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:21:20 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:20 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:21:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:21:20 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:21:20 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:21:20 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:21:20 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:20 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:21:20 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:21:20 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:21:20 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:21:20 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:21:20 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:21:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:21:29 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:21:29 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:29 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:21:29 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:29 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:21:29 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:21:29 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:21:29 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:21:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:21:29 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:29 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:29 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:21:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:21:30 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:30 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:21:30 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:21:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:21:30 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:21:30 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:21:30 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:30 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:21:30 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:21:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 01:21:30 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:21:30 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed']", 'Base')" 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed'] found." 2021-12-14 01:21:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed'] found." 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed']", 'Base')" 2021-12-14 01:21:30 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed']" 2021-12-14 01:21:30 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Time - Elapsed'] was clicked" 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:21:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:21:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:21:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:21:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:21:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:21:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:21:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:33 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:21:33 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:33 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:21:33 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:21:33 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:21:33 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:21:33 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:21:33 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:33 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:21:33 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:21:33 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:21:33 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:21:33 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:21:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:21:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:21:33 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:33 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:21:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:21:33 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:21:33 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:33 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:21:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:21:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:21:33 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:33 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:21:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:21:33 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:21:33 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:21:33 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:21:33 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:33 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:21:33 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:21:33 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:21:33 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:21:34 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:21:34 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:21:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:21:42 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:21:42 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:42 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:21:42 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:42 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:21:42 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:21:42 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:21:42 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:21:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:21:42 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:42 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:42 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:21:42 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:42 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:21:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:21:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:42 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:21:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:21:42 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:21:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:21:42 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:21:42 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:21:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:21:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:21:43 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:43 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:21:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:21:43 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:21:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 01:21:43 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:21:43 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 01:21:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp']", 'Base')" 2021-12-14 01:21:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:43 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp'] found." 2021-12-14 01:21:43 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:43 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp'] found." 2021-12-14 01:21:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp']", 'Base')" 2021-12-14 01:21:43 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp']" 2021-12-14 01:21:43 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timestamp'] was clicked" 2021-12-14 01:21:43 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:21:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:43 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:21:43 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:43 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:21:43 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:21:43 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:21:43 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:43 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:21:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:21:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:45 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:21:45 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:45 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:21:45 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:21:45 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:21:45 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:21:45 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:21:45 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:45 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:21:45 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:21:45 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:21:45 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:21:45 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:21:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:21:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:21:45 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:45 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:21:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:21:45 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:21:45 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:45 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:21:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:21:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:21:46 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:46 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:21:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:21:46 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:21:46 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:21:46 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:21:46 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:46 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:21:46 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:21:46 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:21:46 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:21:46 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:21:46 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:21:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:21:54 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:21:54 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:54 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:21:54 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:54 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:21:54 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:21:54 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:21:54 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:21:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:21:54 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:54 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:54 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:21:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:21:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:21:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:21:54 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:54 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:21:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:21:54 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:21:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:21:54 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:21:54 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:21:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:21:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:21:55 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:55 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:21:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:21:55 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:21:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 01:21:55 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:21:55 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 01:21:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone']", 'Base')" 2021-12-14 01:21:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone'] found." 2021-12-14 01:21:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone'] found." 2021-12-14 01:21:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone']", 'Base')" 2021-12-14 01:21:55 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone']" 2021-12-14 01:21:55 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Timezone'] was clicked" 2021-12-14 01:21:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:21:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:21:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:21:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:21:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:21:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:55 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:21:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:21:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:57 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:21:57 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:57 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:21:57 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:21:57 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:21:57 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:21:57 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:21:57 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:57 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:21:57 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:21:57 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:21:57 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:21:57 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:21:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:21:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:21:57 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:57 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:21:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:21:57 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:21:57 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:57 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:21:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:21:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:21:58 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:58 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:21:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:21:58 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:21:58 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:21:58 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:21:58 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:21:58 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:21:58 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:21:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:21:58 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:21:58 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:21:58 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:21:58 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:22:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:22:07 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:22:07 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:07 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:22:07 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:07 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:22:07 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:22:07 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:22:07 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:22:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:22:07 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:07 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:07 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:07 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:07 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:22:07 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:07 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:22:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:22:07 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:07 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:22:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:22:07 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:22:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:22:08 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:22:08 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:22:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:22:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:08 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:22:08 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:08 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:22:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:22:08 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:22:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 01:22:08 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:22:08 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 01:22:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay']", 'Base')" 2021-12-14 01:22:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:08 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay'] found." 2021-12-14 01:22:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay'] found." 2021-12-14 01:22:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay']", 'Base')" 2021-12-14 01:22:08 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay']" 2021-12-14 01:22:08 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Delay'] was clicked" 2021-12-14 01:22:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:22:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:09 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:22:09 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:09 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:22:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:22:09 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:22:09 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:09 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:22:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:22:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:10 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:22:10 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:10 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:22:10 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:22:10 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:22:10 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:22:10 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:22:10 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:10 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:22:10 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:22:11 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:22:11 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:22:11 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:22:11 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:22:11 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:11 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:22:11 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:11 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:22:11 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:22:11 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:22:11 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:11 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:22:11 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:22:11 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:11 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:22:11 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:11 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:22:11 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:22:11 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:22:11 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:22:11 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:22:11 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:11 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:22:11 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:22:11 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:22:11 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:22:11 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:22:11 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:22:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:22:22 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:22:22 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:22 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:22:22 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:22 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:22:22 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:22:22 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:22:22 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:22:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:22:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time'] found." 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']", 'Expandable')" 2021-12-14 01:22:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:22:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/.. found." 2021-12-14 01:22:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']" 2021-12-14 01:22:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time'] was clicked" 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:22:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] found." 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']", 'Expandable')" 2021-12-14 01:22:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:22:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/.. found." 2021-12-14 01:22:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']" 2021-12-14 01:22:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time'] was clicked" 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time']", 'Base')" 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time'] found." 2021-12-14 01:22:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time'] found." 2021-12-14 01:22:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time']", 'Base')" 2021-12-14 01:22:22 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time']" 2021-12-14 01:22:23 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Date & Time']/../..//*[text()='Time']/../..//*[contains(@class,'depth2')]//*[text()='Hold Time'] was clicked" 2021-12-14 01:22:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:22:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:22:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:22:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:22:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:22:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:22:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:22:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:22:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:22:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:22:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:22:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:22:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:22:25 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:25 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:22:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:22:25 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:22:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:22:25 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:22:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:22:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:22:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:22:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:22:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:22:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:22:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:22:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:22:25 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:25 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:22:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:22:25 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:22:25 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:22:25 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:22:25 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:25 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:22:25 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:22:25 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:22:25 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:22:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:22:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:22:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:22:34 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:22:34 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:34 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:22:34 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:34 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:22:34 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:22:34 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:22:34 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:22:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:22:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:22:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:22:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:22:34 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:34 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:22:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:22:34 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:22:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:22:34 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:22:34 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:22:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact']", 'Base')" 2021-12-14 01:22:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact'] found." 2021-12-14 01:22:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact'] found." 2021-12-14 01:22:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact']", 'Base')" 2021-12-14 01:22:34 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact']" 2021-12-14 01:22:35 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Dry Contact'] was clicked" 2021-12-14 01:22:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:22:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:22:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:22:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:22:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:22:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:22:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:22:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:37 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:22:37 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:37 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:22:37 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:22:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:22:37 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:22:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:22:37 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:37 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:22:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:22:37 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:22:37 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:22:37 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:22:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:22:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:22:37 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:37 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:22:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:22:37 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:22:37 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:37 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:22:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:22:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:22:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:22:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:22:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:22:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:22:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:22:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:22:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:22:38 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:22:38 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:22:38 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:22:38 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:22:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:22:46 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:22:46 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:46 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:22:46 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:46 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:22:46 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:22:46 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:22:46 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:22:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:22:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:22:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:22:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:22:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:22:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:22:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:22:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:22:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:22:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:22:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug']", 'Base')" 2021-12-14 01:22:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug'] found." 2021-12-14 01:22:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug'] found." 2021-12-14 01:22:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug']", 'Base')" 2021-12-14 01:22:47 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug']" 2021-12-14 01:22:47 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Managed Plug'] was clicked" 2021-12-14 01:22:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:22:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:47 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:22:47 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:47 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:22:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:22:47 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:22:47 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:47 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:22:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:22:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:49 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:22:49 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:49 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:22:49 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:22:49 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:22:49 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:22:49 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:22:49 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:49 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:22:49 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:22:49 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:22:49 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:22:49 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:22:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:22:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:22:49 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:49 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:22:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:22:49 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:22:49 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:49 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:22:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:22:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:22:49 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:49 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:22:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:22:49 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:22:49 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:22:49 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:22:49 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:49 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:22:49 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:22:50 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:22:50 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:22:50 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:22:50 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:22:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:22:58 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:22:58 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:58 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:22:58 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:59 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:22:59 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:22:59 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:22:59 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:59 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:22:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:59 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:22:59 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:59 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:22:59 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:22:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:22:59 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:22:59 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 01:22:59 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:59 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 01:22:59 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 01:22:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. found." 2021-12-14 01:22:59 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 01:22:59 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] was clicked" 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle']", 'Base')" 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] found." 2021-12-14 01:22:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:22:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] found." 2021-12-14 01:22:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle']", 'Base')" 2021-12-14 01:22:59 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle']" 2021-12-14 01:23:00 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] was clicked" 2021-12-14 01:23:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:23:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:23:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:23:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:23:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:23:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:23:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:23:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:01 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:23:02 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:02 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:23:02 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:23:02 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:23:02 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:23:02 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:23:02 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:02 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:23:02 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:23:02 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:23:02 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:23:02 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:23:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:23:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:23:02 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:02 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:23:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:23:02 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:23:02 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:02 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:23:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:23:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:23:02 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:02 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:23:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:23:02 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:23:02 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:23:02 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:23:02 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:02 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:23:02 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:23:02 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:23:02 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:23:03 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:23:03 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:23:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:23:11 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:23:11 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:11 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:23:11 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:11 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:23:11 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:23:11 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:23:11 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:23:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:23:11 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:11 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:23:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:23:11 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:23:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:23:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:23:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:23:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:23:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:23:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:23:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:23:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:23:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:23:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 01:23:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 01:23:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 01:23:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 01:23:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 01:23:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. found." 2021-12-14 01:23:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 01:23:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] was clicked" 2021-12-14 01:23:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic']", 'Base')" 2021-12-14 01:23:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] found." 2021-12-14 01:23:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] found." 2021-12-14 01:23:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic']", 'Base')" 2021-12-14 01:23:12 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic']" 2021-12-14 01:23:12 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] was clicked" 2021-12-14 01:23:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:23:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:23:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:12 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:23:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:23:12 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:23:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:23:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:23:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:15 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:23:15 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:15 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:23:15 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:23:15 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:23:15 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:23:15 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:23:15 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:15 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:23:15 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:23:15 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:23:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:23:15 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:23:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:23:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:23:15 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:15 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:23:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:23:15 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:23:15 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:15 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:23:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:23:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:23:15 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:15 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:23:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:23:15 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:23:15 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:23:15 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:23:15 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:15 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:23:15 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:23:15 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:23:15 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:23:16 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:23:16 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:23:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:23:25 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:23:25 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:25 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:23:25 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:25 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:23:25 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:23:25 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:23:25 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:23:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:23:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:23:25 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:25 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:23:25 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:23:25 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:25 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:23:25 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:23:25 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 01:23:25 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:25 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 01:23:25 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 01:23:25 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:25 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. found." 2021-12-14 01:23:25 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 01:23:25 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] was clicked" 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current']", 'Base')" 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current'] found." 2021-12-14 01:23:25 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:25 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current'] found." 2021-12-14 01:23:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current']", 'Base')" 2021-12-14 01:23:25 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current']" 2021-12-14 01:23:26 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Current'] was clicked" 2021-12-14 01:23:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:23:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:26 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:23:26 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:26 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:23:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:23:26 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:23:26 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:26 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:23:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:23:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:28 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:23:28 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:28 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:23:28 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:23:28 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:23:28 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:23:28 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:23:28 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:28 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:23:28 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:23:28 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:23:28 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:23:28 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:23:28 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:23:28 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:28 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:23:28 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:28 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:23:28 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:23:28 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:23:28 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:28 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:23:28 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:23:28 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:28 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:23:28 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:28 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:23:28 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:23:28 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:23:29 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:23:29 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:23:29 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:29 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:23:29 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:23:29 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:23:29 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:23:29 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:23:29 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:23:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:23:38 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:23:38 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:38 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:23:38 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:38 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:23:38 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:23:38 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:23:38 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:23:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:23:38 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:38 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:23:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:23:38 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:23:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:23:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:23:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:23:38 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:38 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:23:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:23:38 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:23:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:23:38 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:23:38 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:23:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 01:23:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 01:23:39 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:39 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 01:23:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 01:23:39 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 01:23:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. found." 2021-12-14 01:23:39 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 01:23:39 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] was clicked" 2021-12-14 01:23:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance']", 'Base')" 2021-12-14 01:23:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance'] found." 2021-12-14 01:23:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance'] found." 2021-12-14 01:23:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance']", 'Base')" 2021-12-14 01:23:39 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance']" 2021-12-14 01:23:39 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Resistance'] was clicked" 2021-12-14 01:23:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:23:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:39 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:23:39 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:39 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:23:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:23:39 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:23:39 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:39 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:23:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:23:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:41 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:23:42 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:42 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:23:42 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:23:42 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:23:42 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:23:42 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:23:42 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:42 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:23:42 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:23:42 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:23:42 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:23:42 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:23:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:23:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:23:42 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:42 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:23:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:23:42 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:23:42 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:42 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:23:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:23:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:23:42 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:42 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:23:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:23:42 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:23:42 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:23:42 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:23:42 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:42 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:23:42 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:23:42 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:23:42 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:23:43 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:23:43 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:23:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:23:51 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:23:51 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:51 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:23:51 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:52 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:23:52 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:23:52 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:23:52 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:23:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:23:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:23:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:23:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:23:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:23:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:23:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 01:23:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] found." 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']", 'Expandable')" 2021-12-14 01:23:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 01:23:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/.. found." 2021-12-14 01:23:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']" 2021-12-14 01:23:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current'] was clicked" 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency']", 'Base')" 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency'] found." 2021-12-14 01:23:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency'] found." 2021-12-14 01:23:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency']", 'Base')" 2021-12-14 01:23:52 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency']" 2021-12-14 01:23:53 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Current']/../..//*[contains(@class,'depth2')]//*[text()='Frequency'] was clicked" 2021-12-14 01:23:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:23:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:23:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:23:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:23:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:23:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:23:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:23:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:55 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:23:55 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:55 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:23:55 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:23:55 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:23:55 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:23:55 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:23:55 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:55 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:23:55 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:23:55 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:23:55 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:23:55 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:23:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:23:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:23:55 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:55 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:23:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:23:55 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:23:55 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:55 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:23:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:23:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:23:56 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:56 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:23:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:23:56 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:23:56 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:23:56 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:23:56 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:23:56 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:23:56 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:23:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:23:56 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:23:56 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:23:56 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:23:56 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:24:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:24:06 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:24:06 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:06 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:24:06 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:06 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:24:06 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:24:06 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:24:06 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:24:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:24:06 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:06 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:24:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:24:06 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:24:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:24:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:24:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:24:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:24:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:24:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:24:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:24:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:24:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:24:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 01:24:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 01:24:07 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:07 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 01:24:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 01:24:07 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 01:24:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. found." 2021-12-14 01:24:07 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 01:24:07 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] was clicked" 2021-12-14 01:24:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load']", 'Base')" 2021-12-14 01:24:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load'] found." 2021-12-14 01:24:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load'] found." 2021-12-14 01:24:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load']", 'Base')" 2021-12-14 01:24:07 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load']" 2021-12-14 01:24:07 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Load'] was clicked" 2021-12-14 01:24:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:24:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:24:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:07 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:24:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:24:07 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:24:07 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:24:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:24:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:09 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:24:09 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:09 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:24:09 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:24:09 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:24:09 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:24:09 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:24:09 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:09 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:24:09 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:24:09 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:24:09 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:24:09 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:24:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:24:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:24:09 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:24:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:24:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:24:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:24:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:24:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:10 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:24:10 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:10 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:24:10 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:24:10 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:24:10 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:24:10 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:24:10 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:10 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:24:10 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:24:10 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:24:10 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:24:10 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:24:10 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:24:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:24:20 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:24:20 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:20 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:24:20 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:20 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:24:20 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:24:20 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:24:20 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:24:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:24:20 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:20 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:24:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:24:20 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:24:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:24:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:24:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:24:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:24:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:24:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:24:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:24:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:24:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:24:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 01:24:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 01:24:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 01:24:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 01:24:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 01:24:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. found." 2021-12-14 01:24:21 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 01:24:21 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] was clicked" 2021-12-14 01:24:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power']", 'Base')" 2021-12-14 01:24:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:21 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power'] found." 2021-12-14 01:24:21 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:21 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power'] found." 2021-12-14 01:24:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power']", 'Base')" 2021-12-14 01:24:21 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power']" 2021-12-14 01:24:21 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Reactive Power'] was clicked" 2021-12-14 01:24:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:24:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:24:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:24:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:24:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:24:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:24:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:24:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:23 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:24:23 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:23 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:24:23 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:24:23 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:24:24 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:24:24 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:24:24 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:24 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:24:24 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:24:24 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:24:24 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:24:24 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:24:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:24:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:24:24 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:24 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:24:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:24:24 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:24:24 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:24 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:24:24 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:24:24 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:24 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:24:24 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:24 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:24:24 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:24:24 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:24:24 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:24:24 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:24:24 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:24 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:24:24 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:24:24 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:24:24 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:24:25 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:24:25 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:24:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:24:34 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:24:34 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:34 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:24:34 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:34 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:24:34 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:24:34 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:24:34 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:24:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:24:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:24:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:24:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:24:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:24:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:24:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:24:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:24:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 01:24:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 01:24:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 01:24:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. found." 2021-12-14 01:24:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 01:24:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] was clicked" 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor']", 'Base')" 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor'] found." 2021-12-14 01:24:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor'] found." 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor']", 'Base')" 2021-12-14 01:24:35 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor']" 2021-12-14 01:24:35 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Factor'] was clicked" 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:24:36 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:36 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:24:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:24:36 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:24:36 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:36 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:24:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:24:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:38 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:24:38 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:38 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:24:38 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:24:38 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:24:38 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:24:38 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:24:38 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:38 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:24:38 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:24:38 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:24:38 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:24:38 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:24:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:24:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:24:38 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:38 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:24:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:24:38 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:24:38 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:38 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:24:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:24:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:24:38 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:38 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:24:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:24:38 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:24:39 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:24:39 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:24:39 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:39 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:24:39 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:24:39 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:24:39 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:24:39 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:24:39 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:24:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:24:49 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:24:49 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:49 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:24:49 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:49 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:24:49 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:24:49 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:24:49 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:24:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:24:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:24:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:24:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:24:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:24:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:24:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 01:24:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 01:24:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 01:24:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. found." 2021-12-14 01:24:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 01:24:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] was clicked" 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power']", 'Base')" 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power'] found." 2021-12-14 01:24:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power'] found." 2021-12-14 01:24:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power']", 'Base')" 2021-12-14 01:24:49 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power']" 2021-12-14 01:24:50 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Active Power'] was clicked" 2021-12-14 01:24:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:24:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:50 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:24:50 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:50 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:24:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:24:50 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:24:50 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:50 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:24:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:24:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:24:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:24:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:24:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:24:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:24:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:24:52 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:52 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:24:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:24:52 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:24:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:24:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:24:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:24:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:24:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:24:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:24:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:24:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:52 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:24:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:24:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:24:52 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:52 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:24:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:24:52 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:24:52 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:24:52 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:24:52 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:24:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:24:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:24:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:24:53 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:24:53 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:24:53 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:24:53 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:25:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:25:02 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:25:02 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:02 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:25:02 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:02 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:25:02 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:25:02 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:25:03 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:25:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:25:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:25:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:25:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:25:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:25:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:25:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 01:25:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 01:25:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 01:25:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. found." 2021-12-14 01:25:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 01:25:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] was clicked" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power']", 'Base')" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power'] found." 2021-12-14 01:25:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power'] found." 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power']", 'Base')" 2021-12-14 01:25:03 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power']" 2021-12-14 01:25:03 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Apparent Power'] was clicked" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:25:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:25:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:25:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:25:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:25:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:25:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:25:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:25:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:25:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:25:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:25:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:25:06 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:06 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:25:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:25:06 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:25:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:25:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:25:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:25:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:25:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:25:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:25:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:25:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:25:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:25:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:25:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:07 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:25:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:25:07 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:25:07 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:25:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:25:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:25:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:25:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:25:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:25:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:25:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:25:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:25:17 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:25:17 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:17 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:25:17 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:17 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:25:17 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:25:17 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:25:17 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:25:17 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:25:17 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:17 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:25:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:25:17 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:25:17 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:17 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:25:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:25:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:25:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:25:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:25:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:25:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:25:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:25:17 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:25:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 01:25:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:17 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 01:25:17 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:17 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] found." 2021-12-14 01:25:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']", 'Expandable')" 2021-12-14 01:25:17 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 01:25:17 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:17 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/.. found." 2021-12-14 01:25:17 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']" 2021-12-14 01:25:18 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power'] was clicked" 2021-12-14 01:25:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle']", 'Base')" 2021-12-14 01:25:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:18 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle'] found." 2021-12-14 01:25:18 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:18 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle'] found." 2021-12-14 01:25:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle']", 'Base')" 2021-12-14 01:25:18 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle']" 2021-12-14 01:25:18 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Power']/../..//*[contains(@class,'depth2')]//*[text()='Power Angle'] was clicked" 2021-12-14 01:25:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:25:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:18 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:25:18 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:18 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:25:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:25:18 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:25:18 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:18 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:25:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:25:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:20 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:25:20 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:20 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:25:20 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:25:20 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:25:20 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:25:20 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:25:20 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:20 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:25:20 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:25:21 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:25:21 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:25:21 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:25:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:25:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:25:21 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:21 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:25:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:25:21 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:25:21 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:21 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:25:21 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:25:21 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:21 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:25:21 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:21 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:25:21 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:25:21 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:25:21 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:25:21 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:25:21 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:21 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:25:21 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:25:21 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:25:21 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:25:21 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:25:21 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:25:32 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:25:32 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:25:32 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:32 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:25:32 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:32 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:25:32 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:25:32 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:25:32 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:25:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:25:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:25:32 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:32 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:25:32 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:25:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:25:32 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:25:32 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']", 'Expandable')" 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] found." 2021-12-14 01:25:32 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:32 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] found." 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']", 'Expandable')" 2021-12-14 01:25:32 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']" 2021-12-14 01:25:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/.. found." 2021-12-14 01:25:32 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']" 2021-12-14 01:25:32 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] was clicked" 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic']", 'Base')" 2021-12-14 01:25:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] found." 2021-12-14 01:25:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] found." 2021-12-14 01:25:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic']", 'Base')" 2021-12-14 01:25:33 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic']" 2021-12-14 01:25:33 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Harmonic'] was clicked" 2021-12-14 01:25:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:25:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:25:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:25:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:25:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:25:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:33 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:25:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:25:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:35 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:25:35 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:35 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:25:35 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:25:35 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:25:35 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:25:35 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:25:35 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:35 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:25:35 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:25:35 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:25:35 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:25:35 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:25:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:25:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:25:35 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:35 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:25:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:25:35 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:25:35 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:35 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:25:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:25:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:25:36 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:36 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:25:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:25:36 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:25:36 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:25:36 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:25:36 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:36 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:25:36 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:25:36 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:25:36 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:25:36 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:25:36 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:25:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:25:46 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:25:46 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:46 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:25:46 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:46 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:25:46 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:25:46 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:25:47 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:25:47 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:25:47 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:25:47 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:47 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:25:47 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:25:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:25:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:25:47 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']", 'Expandable')" 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] found." 2021-12-14 01:25:47 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:47 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] found." 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']", 'Expandable')" 2021-12-14 01:25:47 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']" 2021-12-14 01:25:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/.. found." 2021-12-14 01:25:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']" 2021-12-14 01:25:47 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] was clicked" 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage']", 'Base')" 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage'] found." 2021-12-14 01:25:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage'] found." 2021-12-14 01:25:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage']", 'Base')" 2021-12-14 01:25:47 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage']" 2021-12-14 01:25:48 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Voltage'] was clicked" 2021-12-14 01:25:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:25:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:48 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:25:48 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:48 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:25:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:25:48 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:25:48 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:48 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:25:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:25:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:50 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:25:50 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:50 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:25:50 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:25:50 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:25:50 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:25:50 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:25:50 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:50 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:25:50 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:25:50 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:25:50 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:25:50 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:25:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:25:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:25:50 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:50 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:25:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:25:50 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:25:50 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:50 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:25:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:25:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:25:50 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:50 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:25:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:25:50 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:25:50 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:25:50 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:25:50 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:25:50 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:25:50 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:25:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:25:50 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:25:50 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:25:51 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:25:51 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:26:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:26:01 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:26:01 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:01 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:26:01 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:01 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:26:01 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:26:01 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:26:01 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:26:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:26:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:26:01 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:01 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity'] found." 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']", 'Expandable')" 2021-12-14 01:26:01 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:26:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/.. found." 2021-12-14 01:26:01 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']" 2021-12-14 01:26:01 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity'] was clicked" 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']", 'Expandable')" 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] found." 2021-12-14 01:26:01 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:01 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] found." 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']", 'Expandable')" 2021-12-14 01:26:01 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']" 2021-12-14 01:26:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/.. found." 2021-12-14 01:26:01 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']" 2021-12-14 01:26:01 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage'] was clicked" 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle']", 'Base')" 2021-12-14 01:26:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] found." 2021-12-14 01:26:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] found." 2021-12-14 01:26:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle']", 'Base')" 2021-12-14 01:26:02 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle']" 2021-12-14 01:26:02 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Electricity']/../..//*[text()='Voltage']/../..//*[contains(@class,'depth2')]//*[text()='Angle'] was clicked" 2021-12-14 01:26:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:26:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:26:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:26:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:26:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:26:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:26:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:26:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:04 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:26:04 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:04 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:26:04 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:26:04 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:26:04 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:26:04 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:26:04 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:04 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:26:04 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:26:04 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:26:04 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:26:04 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:26:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:26:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:26:04 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:04 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:26:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:26:04 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:26:04 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:04 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:26:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:26:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:26:05 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:05 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:26:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:26:05 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:26:05 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:26:05 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:26:05 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:05 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:26:05 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:26:05 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:26:05 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:26:05 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:26:05 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:26:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:26:15 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:26:15 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:15 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:26:15 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:15 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:26:15 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:26:15 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:26:16 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:26:16 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:16 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:26:16 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:16 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:26:16 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:16 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:26:16 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:26:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:26:16 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:26:16 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:26:16 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:16 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:26:16 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:26:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 01:26:16 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:26:16 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power']", 'Base')" 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power'] found." 2021-12-14 01:26:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power'] found." 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power']", 'Base')" 2021-12-14 01:26:16 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power']" 2021-12-14 01:26:16 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Power'] was clicked" 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:26:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:17 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:26:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:26:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:26:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:26:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:26:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:26:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:19 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:26:19 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:19 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:26:19 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:26:19 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:26:19 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:26:19 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:26:19 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:19 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:26:19 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:26:19 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:26:19 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:26:19 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:26:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:26:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:26:19 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:19 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:26:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:26:19 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:26:19 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:19 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:26:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:26:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:26:19 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:20 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:26:20 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:26:20 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:26:20 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:26:20 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:26:20 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:20 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:26:20 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:20 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:26:20 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:26:20 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:26:20 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:26:20 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:26:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:26:30 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:26:30 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:30 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:26:30 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:30 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:26:30 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:26:30 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:26:30 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:26:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:26:30 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:26:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:26:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:26:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:26:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:26:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:26:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:26:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:26:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:26:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:26:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 01:26:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:26:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status']", 'Base')" 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status'] found." 2021-12-14 01:26:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status'] found." 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status']", 'Base')" 2021-12-14 01:26:31 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status']" 2021-12-14 01:26:31 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Preheating coil - Elec Status'] was clicked" 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:26:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:26:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:26:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:26:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:26:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:26:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:26:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:26:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:34 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:26:34 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:26:34 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:26:34 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:26:34 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:26:34 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:34 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:26:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:26:34 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:26:34 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:26:34 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:26:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:26:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:26:34 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:34 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:26:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:26:34 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:26:34 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:34 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:26:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:26:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:26:34 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:34 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:26:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:26:34 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:26:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:26:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:26:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:26:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:26:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:26:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:26:35 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:26:35 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:26:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:26:47 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:26:47 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:47 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:26:47 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:47 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:26:47 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:26:47 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:26:47 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:26:47 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:26:47 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:26:47 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:47 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:26:47 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:26:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:26:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:26:47 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:26:47 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:47 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:26:47 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:26:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 01:26:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:26:47 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power']", 'Base')" 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power'] found." 2021-12-14 01:26:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power'] found." 2021-12-14 01:26:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power']", 'Base')" 2021-12-14 01:26:47 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power']" 2021-12-14 01:26:48 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Power'] was clicked" 2021-12-14 01:26:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:26:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:48 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:26:48 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:48 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:26:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:26:48 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:26:48 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:48 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:26:50 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:26:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:50 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:26:50 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:50 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:26:50 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:26:50 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:26:50 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:26:50 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:26:50 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:50 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:26:50 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:26:50 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:26:50 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:26:50 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:26:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:26:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:26:50 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:51 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:26:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:26:51 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:26:51 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:51 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:26:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:26:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:26:51 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:51 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:26:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:26:51 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:26:51 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:26:51 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:26:51 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:26:51 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:26:51 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:26:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:26:51 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:26:51 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:26:51 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:26:51 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:27:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:27:03 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:27:03 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:03 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:27:03 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:03 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:27:03 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:27:03 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:27:03 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:27:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:27:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:27:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:27:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:27:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:27:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:27:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:27:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:27:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:27:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 01:27:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:27:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status']", 'Base')" 2021-12-14 01:27:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status'] found." 2021-12-14 01:27:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status'] found." 2021-12-14 01:27:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status']", 'Base')" 2021-12-14 01:27:04 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status']" 2021-12-14 01:27:04 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Reheating coil - Elec Status'] was clicked" 2021-12-14 01:27:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:27:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:27:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:27:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:27:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:27:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:27:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:27:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:27:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:27:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:27:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:27:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:27:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:27:06 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:06 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:27:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:27:07 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:27:07 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:27:07 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:27:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:27:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:27:07 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:07 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:27:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:27:07 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:27:07 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:07 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:27:07 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:27:07 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:07 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:27:07 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:07 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:27:07 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:27:07 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:27:07 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:27:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:27:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:27:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:27:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:27:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:27:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:27:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:27:18 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:27:18 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:27:18 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:18 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:27:18 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:18 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:27:18 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:27:18 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:27:18 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:27:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:27:18 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:18 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:27:18 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:18 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:27:18 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:27:18 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:18 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:27:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:27:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:18 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:27:18 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:18 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:27:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:27:18 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:27:18 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:18 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:27:18 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:27:18 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:27:18 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:27:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:18 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:27:18 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:18 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:27:18 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:27:18 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:27:18 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 01:27:19 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:27:19 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 01:27:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water']", 'Base')" 2021-12-14 01:27:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water'] found." 2021-12-14 01:27:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water'] found." 2021-12-14 01:27:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water']", 'Base')" 2021-12-14 01:27:19 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water']" 2021-12-14 01:27:19 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating/Cooling Coil - Water'] was clicked" 2021-12-14 01:27:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:27:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:19 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:27:19 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:19 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:27:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:27:19 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:27:19 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:19 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:27:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:27:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:21 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:27:21 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:21 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:27:21 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:27:21 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:27:21 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:27:21 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:27:21 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:21 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:27:21 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:27:22 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:27:22 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:27:22 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:27:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:27:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:27:22 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:22 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:27:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:27:22 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:27:22 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:22 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:27:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:27:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:27:22 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:22 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:27:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:27:22 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:27:22 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:27:22 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:27:22 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:22 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:27:22 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:27:22 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:27:22 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:27:22 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:27:22 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:27:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:27:34 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:27:34 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:34 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:27:34 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:34 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:27:34 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:27:34 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:27:34 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:27:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:27:34 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:34 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:27:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:27:34 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:27:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:27:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:27:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:27:34 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:34 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:27:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:27:34 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:27:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:27:34 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:27:34 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:27:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:27:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:27:34 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:34 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:27:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:27:34 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:27:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 01:27:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:27:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 01:27:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water']", 'Base')" 2021-12-14 01:27:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water'] found." 2021-12-14 01:27:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water'] found." 2021-12-14 01:27:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water']", 'Base')" 2021-12-14 01:27:35 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water']" 2021-12-14 01:27:35 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Cooling coil - Water'] was clicked" 2021-12-14 01:27:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:27:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:35 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:27:35 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:35 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:27:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:27:35 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:27:35 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:35 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:27:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:27:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:38 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:27:38 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:38 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:27:38 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:27:38 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:27:38 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:27:38 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:27:38 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:38 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:27:38 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:27:38 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:27:38 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:27:38 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:27:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:27:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:27:38 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:38 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:27:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:27:38 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:27:38 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:38 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:27:38 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:27:38 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:38 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:27:38 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:38 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:27:38 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:27:38 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:27:38 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:27:38 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:27:38 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:38 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:27:38 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:27:38 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:27:38 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:27:39 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:27:39 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:27:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:27:50 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:27:50 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:50 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:27:50 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:50 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:27:50 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:27:50 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:27:50 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:27:50 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:50 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:27:50 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:50 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:27:50 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:50 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:27:50 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:27:50 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:50 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:27:50 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:27:50 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:27:50 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:50 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] found." 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']", 'Expandable')" 2021-12-14 01:27:50 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:27:50 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:50 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/.. found." 2021-12-14 01:27:50 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']" 2021-12-14 01:27:50 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil'] was clicked" 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water']", 'Base')" 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:50 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water'] found." 2021-12-14 01:27:50 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:51 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water'] found." 2021-12-14 01:27:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water']", 'Base')" 2021-12-14 01:27:51 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water']" 2021-12-14 01:27:51 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Coil']/../..//*[contains(@class,'depth2')]//*[text()='Heating coil - Water'] was clicked" 2021-12-14 01:27:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:27:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:27:51 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:51 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:27:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:27:51 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:27:51 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:51 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:27:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:27:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:53 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:27:53 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:53 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:27:53 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:27:53 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:27:53 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:27:53 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:27:53 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:53 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:27:53 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:27:53 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:27:53 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:27:53 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:27:53 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:27:53 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:27:53 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:53 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:27:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:27:53 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:27:53 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:54 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:27:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:27:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:27:54 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:54 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:27:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:27:54 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:27:54 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:27:54 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:27:54 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:27:54 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:27:54 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:27:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:27:54 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:27:54 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:27:54 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:27:54 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:28:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:28:06 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:28:06 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:06 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:28:06 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:06 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:28:06 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:28:06 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:28:06 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:28:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:28:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:28:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:28:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:28:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:28:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:28:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:28:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:28:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:28:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:28:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:28:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode']", 'Base')" 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode'] found." 2021-12-14 01:28:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode'] found." 2021-12-14 01:28:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode']", 'Base')" 2021-12-14 01:28:06 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode']" 2021-12-14 01:28:07 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Mode'] was clicked" 2021-12-14 01:28:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:28:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:28:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:07 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:28:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:28:07 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:28:07 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:28:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:28:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:09 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:28:09 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:09 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:28:09 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:28:09 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:28:09 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:28:09 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:28:09 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:09 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:28:09 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:28:09 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:28:09 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:28:09 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:28:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:28:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:28:09 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:28:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:28:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:28:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:28:10 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:28:10 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:10 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:28:10 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:10 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:28:10 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:28:10 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:28:10 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:28:10 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:28:10 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:10 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:28:10 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:28:10 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:28:10 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:28:10 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:28:10 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:28:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:28:22 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:28:22 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:22 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:28:22 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:22 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:28:22 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:28:22 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:28:22 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:28:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:28:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:22 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:28:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:28:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:28:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:28:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:28:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:28:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:28:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:28:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:28:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:28:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:28:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:28:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:28:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:28:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:28:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:28:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:28:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:28:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:28:23 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:28:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position']", 'Base')" 2021-12-14 01:28:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position'] found." 2021-12-14 01:28:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position'] found." 2021-12-14 01:28:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position']", 'Base')" 2021-12-14 01:28:23 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position']" 2021-12-14 01:28:23 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Position'] was clicked" 2021-12-14 01:28:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:28:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:28:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:28:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:28:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:28:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:28:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:28:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:28:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:28:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:28:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:28:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:28:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:28:25 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:25 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:28:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:28:26 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:28:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:28:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:28:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:28:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:28:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:28:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:28:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:28:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:28:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:28:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:28:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:28:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:28:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:28:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:28:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:28:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:28:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:28:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:28:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:28:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:28:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:28:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:28:38 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:28:38 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:38 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:28:38 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:38 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:28:38 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:28:38 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:28:38 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:28:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:28:38 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:38 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:28:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:28:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:28:39 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:39 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:28:39 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:28:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:28:39 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:28:39 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:28:39 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:39 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:28:39 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:28:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:28:39 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:28:39 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response']", 'Base')" 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response'] found." 2021-12-14 01:28:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response'] found." 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response']", 'Base')" 2021-12-14 01:28:39 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response']" 2021-12-14 01:28:39 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Response'] was clicked" 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:39 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:28:39 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:28:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:28:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:28:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:28:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:28:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:42 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:28:42 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:42 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:28:42 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:28:42 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:28:42 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:28:42 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:28:42 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:42 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:28:42 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:28:42 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:28:42 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:28:42 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:28:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:28:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:28:42 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:42 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:28:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:28:42 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:28:42 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:42 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:28:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:28:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:28:43 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:43 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:28:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:28:43 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:28:43 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:28:43 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:28:43 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:43 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:28:43 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:28:43 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:28:43 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:28:43 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:28:43 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:28:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:28:55 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:28:55 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:55 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:28:55 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:55 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:28:55 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:28:55 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:28:55 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:28:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:28:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:28:55 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:55 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:28:55 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:28:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:28:55 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:28:55 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:28:55 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:55 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:28:55 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:28:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:28:55 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:28:55 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed']", 'Base')" 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed'] found." 2021-12-14 01:28:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed'] found." 2021-12-14 01:28:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed']", 'Base')" 2021-12-14 01:28:55 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed']" 2021-12-14 01:28:56 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Speed'] was clicked" 2021-12-14 01:28:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:28:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:28:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:28:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:28:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:28:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:28:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:28:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:58 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:28:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:58 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:28:58 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:28:58 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:28:58 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:28:58 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:28:58 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:58 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:28:58 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:28:58 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:28:58 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:28:58 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:28:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:28:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:28:58 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:28:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:28:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:28:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:28:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:28:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:28:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:28:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:28:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:28:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:28:59 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:28:59 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:28:59 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:28:59 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:28:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:28:59 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:28:59 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:28:59 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:28:59 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:29:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:29:11 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:29:11 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:11 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:29:11 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:11 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:29:11 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:29:11 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:29:12 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:29:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:29:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:29:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:29:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:29:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:29:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:29:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:29:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:29:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:29:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:29:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:29:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation']", 'Base')" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation'] found." 2021-12-14 01:29:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation'] found." 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation']", 'Base')" 2021-12-14 01:29:12 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation']" 2021-12-14 01:29:12 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - Rotation'] was clicked" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:12 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:29:12 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:29:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:29:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:29:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:29:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:29:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:15 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:29:15 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:15 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:29:15 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:29:15 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:29:15 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:29:15 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:29:15 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:15 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:29:15 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:29:15 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:29:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:29:16 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:29:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:29:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:29:16 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:16 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:29:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:29:16 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:29:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:29:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:29:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:29:16 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:16 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:29:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:29:16 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:29:16 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:29:16 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:29:16 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:16 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:29:16 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:29:16 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:29:16 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:29:16 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:29:16 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:29:28 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:29:28 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:29:28 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:28 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:29:28 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:28 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:29:28 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:29:28 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:29:28 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:29:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:29:28 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:28 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:29:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:29:28 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:29:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:29:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:29:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:29:28 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:28 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:29:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:29:28 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:29:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:29:28 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:29:28 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:29:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:29:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:29:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:29:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:29:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:29:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:29:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:29:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:29:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states']", 'Base')" 2021-12-14 01:29:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states'] found." 2021-12-14 01:29:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states'] found." 2021-12-14 01:29:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states']", 'Base')" 2021-12-14 01:29:29 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states']" 2021-12-14 01:29:29 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 3 states'] was clicked" 2021-12-14 01:29:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:29:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:29:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:29 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:29:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:29:29 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:29:29 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:29 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:29:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:29:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:29:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:29:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:29:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:29:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:29:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:29:32 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:32 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:29:32 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:29:32 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:29:32 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:29:32 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:29:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:29:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:29:32 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:32 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:29:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:29:32 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:29:32 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:32 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:29:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:29:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:29:32 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:32 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:29:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:29:32 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:29:32 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:29:32 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:29:32 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:32 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:29:32 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:29:33 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:29:33 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:29:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:29:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:29:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:29:45 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:29:45 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:45 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:29:45 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:45 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:29:45 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:29:45 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:29:46 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:29:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:29:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:29:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:29:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:29:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:29:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:29:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:29:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:29:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:29:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:29:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:29:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states']", 'Base')" 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states'] found." 2021-12-14 01:29:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states'] found." 2021-12-14 01:29:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states']", 'Base')" 2021-12-14 01:29:46 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states']" 2021-12-14 01:29:47 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Damper - 4 states'] was clicked" 2021-12-14 01:29:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:29:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:47 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:29:47 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:47 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:29:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:29:47 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:29:47 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:47 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:29:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:29:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:49 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:29:49 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:49 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:29:49 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:29:49 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:29:49 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:29:49 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:29:49 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:49 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:29:49 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:29:49 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:29:49 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:29:50 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:29:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:29:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:29:50 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:50 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:29:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:29:50 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:29:50 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:50 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:29:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:29:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:29:50 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:50 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:29:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:29:50 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:29:50 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:29:50 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:29:50 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:29:50 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:29:50 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:29:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:29:50 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:29:50 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:29:50 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:29:50 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:30:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:30:02 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:30:02 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:02 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:30:02 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:02 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:30:02 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:30:02 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:30:02 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:30:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:30:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:30:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:30:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:30:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:30:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:30:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:30:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:30:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:30:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:30:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:30:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:30:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:30:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:30:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:30:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:30:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:30:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:30:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:30:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:30:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:30:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State']", 'Base')" 2021-12-14 01:30:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State'] found." 2021-12-14 01:30:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State'] found." 2021-12-14 01:30:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State']", 'Base')" 2021-12-14 01:30:03 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State']" 2021-12-14 01:30:03 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator State'] was clicked" 2021-12-14 01:30:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:30:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:30:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:30:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:30:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:30:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:30:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:30:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:30:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:30:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:30:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:30:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:30:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:30:06 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:06 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:30:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:30:06 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:30:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:30:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:30:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:30:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:30:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:30:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:30:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:30:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:30:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:30:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:30:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:30:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:30:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:30:07 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:30:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:30:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:30:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:30:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:30:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:30:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:30:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:30:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:30:19 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:30:19 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:19 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:30:19 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:19 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:30:19 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:30:19 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:30:19 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:30:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:30:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:30:19 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:19 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:30:19 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:30:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:30:19 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:30:19 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:30:19 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:19 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:30:19 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:30:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:30:19 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:30:19 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status']", 'Base')" 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status'] found." 2021-12-14 01:30:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status'] found." 2021-12-14 01:30:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status']", 'Base')" 2021-12-14 01:30:20 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status']" 2021-12-14 01:30:20 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Status'] was clicked" 2021-12-14 01:30:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:30:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:30:20 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:30:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:30:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:30:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:30:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:30:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:22 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:30:22 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:22 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:30:22 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:30:22 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:30:22 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:30:22 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:30:22 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:22 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:30:22 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:30:22 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:30:22 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:30:22 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:30:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:30:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:30:22 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:22 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:30:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:30:22 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:30:22 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:22 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:30:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:30:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:30:23 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:23 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:30:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:30:23 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:30:23 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:30:23 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:30:23 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:23 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:30:23 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:30:23 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:30:23 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:30:23 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:30:23 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:30:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:30:36 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:30:36 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:36 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:30:36 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:36 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:30:36 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:30:36 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:30:36 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:30:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:30:36 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:36 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:30:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:30:36 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:30:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:30:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:30:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:30:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:30:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:30:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:30:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:30:37 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:30:37 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:30:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:30:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:30:37 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:37 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:30:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:30:37 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:30:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:30:37 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:30:37 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:30:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State']", 'Base')" 2021-12-14 01:30:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State'] found." 2021-12-14 01:30:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State'] found." 2021-12-14 01:30:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State']", 'Base')" 2021-12-14 01:30:37 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State']" 2021-12-14 01:30:37 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Filter State'] was clicked" 2021-12-14 01:30:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:30:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:37 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:30:37 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:37 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:30:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:30:37 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:30:37 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:37 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:30:39 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:30:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:39 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:30:40 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:40 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:30:40 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:30:40 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:30:40 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:30:40 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:30:40 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:40 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:30:40 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:30:40 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:30:40 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:30:40 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:30:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:30:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:30:40 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:40 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:30:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:30:40 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:30:40 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:40 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:30:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:30:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:30:40 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:40 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:30:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:30:40 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:30:40 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:30:40 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:30:40 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:40 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:30:40 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:30:40 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:30:40 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:30:41 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:30:41 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:30:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:30:53 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:30:53 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:53 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:30:53 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:53 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:30:53 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:30:53 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:30:53 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:30:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:30:53 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:53 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:30:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:30:53 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:30:53 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:53 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:30:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:30:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:53 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:30:53 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:53 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:30:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:30:53 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:30:53 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:53 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:30:53 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:30:53 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:30:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:30:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:53 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:30:53 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:54 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:30:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:30:54 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:30:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:30:54 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:30:54 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:30:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode']", 'Base')" 2021-12-14 01:30:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:54 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode'] found." 2021-12-14 01:30:54 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:54 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode'] found." 2021-12-14 01:30:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode']", 'Base')" 2021-12-14 01:30:54 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode']" 2021-12-14 01:30:54 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Mode'] was clicked" 2021-12-14 01:30:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:30:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:30:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:30:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:30:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:30:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:30:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:30:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:56 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:30:56 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:56 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:30:56 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:30:56 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:30:56 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:30:56 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:30:56 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:56 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:30:56 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:30:56 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:30:56 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:30:56 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:30:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:30:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:30:57 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:57 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:30:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:30:57 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:30:57 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:57 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:30:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:30:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:30:57 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:57 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:30:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:30:57 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:30:57 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:30:57 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:30:57 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:30:57 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:30:57 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:30:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:30:57 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:30:57 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:30:57 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:30:57 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:31:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:31:10 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:31:10 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:10 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:31:10 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:10 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:31:10 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:31:10 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:31:10 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:31:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:31:10 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:10 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:31:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:31:10 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:31:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:31:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:31:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:31:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:31:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:31:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:31:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:31:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:31:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:31:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:31:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:31:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:31:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:31:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:31:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:31:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:31:11 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:31:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type']", 'Base')" 2021-12-14 01:31:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type'] found." 2021-12-14 01:31:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type'] found." 2021-12-14 01:31:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type']", 'Base')" 2021-12-14 01:31:11 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type']" 2021-12-14 01:31:11 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Drive Type'] was clicked" 2021-12-14 01:31:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:31:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:31:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:31:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:31:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:31:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:31:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:31:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:13 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:31:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:31:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:31:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:31:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:31:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:31:14 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:14 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:31:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:31:14 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:31:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:31:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:31:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:31:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:31:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:31:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:31:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:31:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:14 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:31:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:31:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:31:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:14 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:31:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:31:14 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:31:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:31:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:31:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:14 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:31:14 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:31:14 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:31:14 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:31:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:31:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:31:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:31:27 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:31:27 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:27 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:31:27 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:27 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:31:27 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:31:27 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:31:27 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:31:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:31:27 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:27 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:31:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:31:27 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:31:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:31:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:31:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:31:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:31:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:31:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:31:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:31:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:31:27 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:31:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:31:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:31:28 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:28 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:31:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:31:28 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:31:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:31:28 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:31:28 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:31:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed']", 'Base')" 2021-12-14 01:31:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed'] found." 2021-12-14 01:31:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed'] found." 2021-12-14 01:31:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed']", 'Base')" 2021-12-14 01:31:28 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed']" 2021-12-14 01:31:28 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Pump - Speed'] was clicked" 2021-12-14 01:31:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:31:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:31:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:31:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:31:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:31:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:31:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:31:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:30 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:31:30 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:30 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:31:30 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:31:30 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:31:30 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:31:30 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:31:30 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:30 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:31:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:31:31 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:31:31 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:31:31 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:31:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:31:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:31:31 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:31 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:31:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:31:31 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:31:31 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:31 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:31:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:31:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:31:31 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:31 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:31:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:31:31 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:31:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:31:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:31:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:31:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:31:31 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:31:31 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:31:32 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:31:32 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:31:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:31:46 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:31:46 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:46 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:31:46 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:46 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:31:46 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:31:46 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:31:46 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:31:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:31:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:31:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:31:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:31:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:31:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:31:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:31:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:31:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:31:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:31:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:31:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:31:47 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:31:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:31:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:31:47 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:47 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:31:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:31:47 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:31:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:31:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:31:47 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:31:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover']", 'Base')" 2021-12-14 01:31:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover'] found." 2021-12-14 01:31:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover'] found." 2021-12-14 01:31:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover']", 'Base')" 2021-12-14 01:31:47 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover']" 2021-12-14 01:31:47 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Changeover'] was clicked" 2021-12-14 01:31:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:31:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:47 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:31:47 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:47 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:31:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:31:47 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:31:47 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:47 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:31:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:31:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:49 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:31:49 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:49 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:31:49 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:31:49 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:31:50 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:31:50 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:31:50 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:50 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:31:50 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:31:50 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:31:50 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:31:50 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:31:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:31:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:31:50 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:50 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:31:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:31:50 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:31:50 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:50 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:31:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:31:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:31:50 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:50 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:31:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:31:50 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:31:50 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:31:50 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:31:50 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:31:50 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:31:50 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:31:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:31:50 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:31:50 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:31:50 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:31:50 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:32:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:32:04 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:32:04 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:04 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:32:04 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:04 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:32:04 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:32:04 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:32:04 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:32:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:32:04 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:04 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:32:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:32:04 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:32:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:32:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:32:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:32:04 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:04 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:32:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:32:04 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:32:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:32:05 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:32:05 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:32:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:32:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:05 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:32:05 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:05 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:32:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:32:05 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:32:05 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:32:05 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:32:05 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:32:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost']", 'Base')" 2021-12-14 01:32:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:05 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost'] found." 2021-12-14 01:32:05 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost'] found." 2021-12-14 01:32:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost']", 'Base')" 2021-12-14 01:32:05 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost']" 2021-12-14 01:32:05 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Defrost'] was clicked" 2021-12-14 01:32:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:32:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:05 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:32:05 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:05 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:32:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:32:05 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:32:05 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:05 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:32:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:32:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:07 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:32:07 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:07 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:32:07 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:32:07 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:32:07 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:32:07 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:32:07 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:07 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:32:07 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:32:08 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:32:08 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:32:08 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:32:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:32:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:32:08 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:08 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:32:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:32:08 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:32:08 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:08 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:32:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:32:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:32:08 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:08 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:32:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:32:08 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:32:08 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:32:08 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:32:08 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:08 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:32:08 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:32:08 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:32:08 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:32:08 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:32:08 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:32:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:32:22 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:32:22 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:22 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:32:22 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:22 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:32:22 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:32:22 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:32:22 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:32:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:32:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:32:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:32:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:32:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:32:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:32:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:32:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:32:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:32:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:32:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:32:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode']", 'Base')" 2021-12-14 01:32:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode'] found." 2021-12-14 01:32:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode'] found." 2021-12-14 01:32:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode']", 'Base')" 2021-12-14 01:32:23 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode']" 2021-12-14 01:32:23 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Mode'] was clicked" 2021-12-14 01:32:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:32:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:32:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:32:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:32:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:32:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:32:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:32:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:32:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:32:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:32:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:32:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:32:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:32:25 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:25 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:32:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:32:25 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:32:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:32:25 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:32:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:32:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:32:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:32:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:32:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:32:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:32:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:32:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:32:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:32:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:32:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:32:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:32:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:32:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:32:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:32:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:32:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:32:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:32:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:32:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:32:39 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:32:39 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:39 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:32:39 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:39 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:32:39 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:32:39 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:32:40 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:32:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:32:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:32:40 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:40 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:32:40 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:32:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:32:40 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:32:40 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:32:40 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:40 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:32:40 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:32:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:32:40 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:32:40 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status']", 'Base')" 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status'] found." 2021-12-14 01:32:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status'] found." 2021-12-14 01:32:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status']", 'Base')" 2021-12-14 01:32:40 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status']" 2021-12-14 01:32:41 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='HVAC Status'] was clicked" 2021-12-14 01:32:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:32:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:41 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:32:41 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:41 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:32:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:32:41 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:32:41 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:41 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:32:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:32:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:42 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:32:43 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:43 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:32:43 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:32:43 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:32:43 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:32:43 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:32:43 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:43 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:32:43 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:32:43 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:32:43 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:32:43 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:32:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:32:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:32:43 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:43 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:32:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:32:43 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:32:43 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:43 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:32:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:32:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:32:43 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:43 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:32:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:32:43 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:32:43 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:32:43 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:32:43 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:43 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:32:44 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:32:44 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:32:44 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:32:44 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:32:44 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:32:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:32:57 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:32:57 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:57 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:32:57 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:57 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:32:57 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:32:57 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:32:57 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:32:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:32:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:32:57 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:57 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:32:57 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:32:57 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:57 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:32:57 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:32:57 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:32:57 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:57 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:32:57 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:32:57 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:57 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:32:57 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:32:57 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State']", 'Base')" 2021-12-14 01:32:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:58 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State'] found." 2021-12-14 01:32:58 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:58 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State'] found." 2021-12-14 01:32:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State']", 'Base')" 2021-12-14 01:32:58 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State']" 2021-12-14 01:32:58 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Motor - State'] was clicked" 2021-12-14 01:32:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:32:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:32:58 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:32:58 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:58 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:32:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:32:58 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:32:58 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:32:58 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:33:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:33:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:00 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:33:00 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:00 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:33:00 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:33:00 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:33:00 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:33:00 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:33:00 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:00 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:33:00 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:33:01 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:33:01 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:33:01 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:33:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:33:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:33:01 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:01 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:33:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:33:01 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:33:01 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:01 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:33:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:33:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:33:01 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:01 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:33:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:33:01 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:33:01 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:33:01 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:33:01 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:01 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:33:01 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:33:01 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:33:01 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:33:01 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:33:01 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:33:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:33:15 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:33:15 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:15 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:33:15 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:15 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:33:15 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:33:15 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:33:15 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:33:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:33:15 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:15 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:33:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:33:15 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:33:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:33:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:33:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:15 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:33:15 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:15 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:33:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:33:15 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:33:15 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:33:16 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:33:16 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:33:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:33:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:33:16 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:16 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:33:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:33:16 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:33:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:33:16 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:33:16 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:33:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off']", 'Base')" 2021-12-14 01:33:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off'] found." 2021-12-14 01:33:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off'] found." 2021-12-14 01:33:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off']", 'Base')" 2021-12-14 01:33:16 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off']" 2021-12-14 01:33:16 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='On/Off'] was clicked" 2021-12-14 01:33:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:33:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:16 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:33:16 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:16 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:33:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:33:16 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:33:16 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:16 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:33:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:33:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:18 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:33:18 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:18 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:33:18 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:33:18 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:33:18 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:33:18 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:33:18 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:18 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:33:18 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:33:19 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:33:19 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:33:19 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:33:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:33:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:33:19 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:19 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:33:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:33:19 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:33:19 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:19 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:33:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:33:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:33:19 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:19 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:33:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:33:19 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:33:19 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:33:19 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:33:19 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:19 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:33:19 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:33:19 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:33:19 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:33:19 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:33:19 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:33:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:33:33 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:33:33 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:33 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:33:33 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:33 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:33:33 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:33:33 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:33:33 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:33:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:33:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:33:33 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:33 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:33:33 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:33:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:33:33 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:33:33 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:33:33 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:33 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:33:33 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:33:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:33:33 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:33:33 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override']", 'Base')" 2021-12-14 01:33:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override'] found." 2021-12-14 01:33:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override'] found." 2021-12-14 01:33:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override']", 'Base')" 2021-12-14 01:33:34 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override']" 2021-12-14 01:33:34 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Override'] was clicked" 2021-12-14 01:33:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:33:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:33:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:33:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:33:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:33:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:33:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:33:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:36 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:33:36 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:36 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:33:36 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:33:36 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:33:36 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:33:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:33:36 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:36 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:33:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:33:36 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:33:36 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:33:36 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:33:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:33:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:33:36 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:36 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:33:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:33:36 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:33:36 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:36 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:33:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:33:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:33:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:33:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:33:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:33:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:33:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:33:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:33:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:33:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:33:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:33:37 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:33:37 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:33:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:33:52 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:33:52 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:52 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:33:52 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:52 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:33:52 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:33:52 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:33:52 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:33:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:33:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:33:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:33:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:33:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:33:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:33:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:33:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:33:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:33:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:33:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:33:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU']", 'Base')" 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU'] found." 2021-12-14 01:33:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:53 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU'] found." 2021-12-14 01:33:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU']", 'Base')" 2021-12-14 01:33:53 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU']" 2021-12-14 01:33:53 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='BTU'] was clicked" 2021-12-14 01:33:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:33:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:33:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:33:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:33:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:33:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:33:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:33:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:54 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:33:54 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:55 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:33:55 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:33:55 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:33:55 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:33:55 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:33:55 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:55 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:33:55 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:33:55 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:33:55 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:33:55 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:33:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:33:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:33:55 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:55 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:33:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:33:55 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:33:55 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:55 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:33:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:33:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:33:55 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:55 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:33:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:33:55 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:33:55 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:33:55 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:33:55 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:33:55 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:33:55 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:33:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:33:55 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:33:55 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:33:56 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:33:56 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:34:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:34:10 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:34:10 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:10 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:34:10 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:10 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:34:10 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:34:10 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:34:10 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:34:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:34:10 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:10 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:34:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:34:10 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:34:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:34:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:34:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:34:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:34:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:34:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:34:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:34:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:34:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:34:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:34:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:34:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:34:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:34:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:34:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:34:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:34:11 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:34:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain']", 'Base')" 2021-12-14 01:34:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain'] found." 2021-12-14 01:34:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain'] found." 2021-12-14 01:34:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain']", 'Base')" 2021-12-14 01:34:11 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain']" 2021-12-14 01:34:11 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Evaporator Drain'] was clicked" 2021-12-14 01:34:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:34:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:34:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:34:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:34:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:34:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:34:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:34:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:34:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:34:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:34:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:34:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:34:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:34:14 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:14 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:34:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:34:14 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:34:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:34:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:34:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:34:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:34:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:34:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:34:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:34:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:14 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:34:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:34:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:34:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:14 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:34:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:34:14 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:34:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:34:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:34:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:15 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:34:15 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:34:15 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:34:15 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:34:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:34:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:34:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:34:30 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:34:30 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:30 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:34:30 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:30 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:34:30 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:34:30 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:34:30 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:34:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:34:30 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:30 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:34:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:34:30 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:34:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:34:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:34:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:34:30 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:30 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:34:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:34:30 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:34:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:34:30 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:34:30 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:34:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:34:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:34:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:34:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:34:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:34:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:34:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:34:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:34:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean']", 'Base')" 2021-12-14 01:34:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean'] found." 2021-12-14 01:34:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean'] found." 2021-12-14 01:34:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean']", 'Base')" 2021-12-14 01:34:31 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean']" 2021-12-14 01:34:31 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Boolean'] was clicked" 2021-12-14 01:34:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:34:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:34:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:34:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:34:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:34:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:34:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:34:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:34:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:34 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:34:34 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:34:34 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:34:34 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:34:34 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:34:34 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:34 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:34:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:34:34 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:34:34 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:34:34 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:34:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:34:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:34:34 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:34 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:34:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:34:34 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:34:34 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:34 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:34:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:34:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:34:34 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:34 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:34:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:34:34 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:34:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:34:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:34:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:34:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:34:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:34:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:34:35 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:34:35 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:34:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:34:49 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:34:49 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:49 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:34:49 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:49 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:34:49 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:34:49 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:34:49 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:34:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:34:49 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:34:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:34:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:34:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:34:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:34:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:34:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:34:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:34:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:34:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:34:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:34:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:34:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:34:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:34:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:34:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:34:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:34:50 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:50 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:34:50 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:34:50 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:34:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight']", 'Base')" 2021-12-14 01:34:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:50 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight'] found." 2021-12-14 01:34:50 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:50 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight'] found." 2021-12-14 01:34:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight']", 'Base')" 2021-12-14 01:34:50 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight']" 2021-12-14 01:34:50 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Fresh Air Request Weight'] was clicked" 2021-12-14 01:34:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:34:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:50 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:34:50 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:50 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:34:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:34:50 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:34:50 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:50 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:34:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:34:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:34:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:53 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:34:53 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:34:53 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:34:53 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:34:53 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:34:53 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:53 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:34:53 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:34:53 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:34:53 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:34:53 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:34:53 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:34:53 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:34:53 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:53 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:34:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:34:53 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:34:53 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:53 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:34:53 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:34:53 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:34:53 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:53 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:34:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:34:53 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:34:53 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:34:53 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:34:53 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:34:53 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:34:53 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:34:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:34:53 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:34:53 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:34:54 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:34:54 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:35:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:35:08 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:35:08 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:08 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:35:08 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:08 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:35:08 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:35:08 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:35:08 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:35:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:35:08 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:08 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:35:08 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:08 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:35:08 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:35:08 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:08 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:35:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:35:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:08 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:35:08 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:08 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:35:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:35:08 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:35:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:35:08 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:35:08 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:35:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:35:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:08 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:35:08 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:08 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] found." 2021-12-14 01:35:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:35:08 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:35:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:35:08 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']" 2021-12-14 01:35:09 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:35:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status']", 'Base')" 2021-12-14 01:35:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status'] found." 2021-12-14 01:35:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status'] found." 2021-12-14 01:35:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status']", 'Base')" 2021-12-14 01:35:09 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status']" 2021-12-14 01:35:09 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Control Status'] was clicked" 2021-12-14 01:35:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:35:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:09 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:35:09 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:09 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:35:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:35:09 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:35:09 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:09 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:35:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:35:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:11 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:35:11 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:11 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:35:11 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:35:11 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:35:12 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:35:12 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:35:12 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:12 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:35:12 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:35:12 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:35:12 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:35:12 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:35:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:35:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:35:12 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:12 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:35:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:35:12 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:35:12 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:12 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:35:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:35:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:35:12 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:12 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:35:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:35:12 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:35:12 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:35:12 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:35:12 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:12 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:35:12 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:35:12 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:35:12 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:35:12 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:35:12 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:35:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:35:27 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:35:27 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:27 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:35:27 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:27 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:35:27 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:35:27 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:35:27 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:35:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:35:27 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:27 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:35:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:35:27 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:35:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:35:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:35:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:35:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:35:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:35:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:35:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:35:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:35:27 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:35:27 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']", 'Expandable')" 2021-12-14 01:35:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:27 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] found." 2021-12-14 01:35:27 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:27 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] found." 2021-12-14 01:35:27 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']", 'Expandable')" 2021-12-14 01:35:27 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']" 2021-12-14 01:35:27 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:27 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/.. found." 2021-12-14 01:35:27 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']" 2021-12-14 01:35:28 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] was clicked" 2021-12-14 01:35:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds']", 'Base')" 2021-12-14 01:35:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds'] found." 2021-12-14 01:35:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds'] found." 2021-12-14 01:35:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds']", 'Base')" 2021-12-14 01:35:28 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds']" 2021-12-14 01:35:28 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - 3 Speeds'] was clicked" 2021-12-14 01:35:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:35:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:35:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:35:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:35:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:35:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:35:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:35:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:30 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:35:30 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:30 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:35:30 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:35:30 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:35:31 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:35:31 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:35:31 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:31 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:35:31 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:35:31 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:35:31 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:35:31 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:35:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:35:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:35:31 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:31 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:35:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:35:31 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:35:31 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:31 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:35:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:35:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:35:31 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:31 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:35:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:35:31 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:35:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:35:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:35:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:35:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:35:31 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:35:31 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:35:31 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:35:31 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:35:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:35:46 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:35:46 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:46 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:35:46 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:46 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:35:46 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:35:46 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:35:46 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:35:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:35:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:35:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:35:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:35:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:35:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:35:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:35:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:35:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:35:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:35:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:35:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:35:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:35:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']", 'Expandable')" 2021-12-14 01:35:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] found." 2021-12-14 01:35:47 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:47 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] found." 2021-12-14 01:35:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']", 'Expandable')" 2021-12-14 01:35:47 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']" 2021-12-14 01:35:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/.. found." 2021-12-14 01:35:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']" 2021-12-14 01:35:47 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] was clicked" 2021-12-14 01:35:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent']", 'Base')" 2021-12-14 01:35:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent'] found." 2021-12-14 01:35:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent'] found." 2021-12-14 01:35:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent']", 'Base')" 2021-12-14 01:35:47 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent']" 2021-12-14 01:35:47 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Fan Speed - Percent'] was clicked" 2021-12-14 01:35:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:35:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:47 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:35:47 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:47 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:35:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:35:47 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:35:47 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:47 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:35:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:35:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:49 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:35:49 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:50 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:35:50 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:35:50 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:35:50 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:35:50 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:35:50 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:50 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:35:50 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:35:50 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:35:50 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:35:50 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:35:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:35:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:35:50 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:50 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:35:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:35:50 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:35:50 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:50 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:35:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:35:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:35:50 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:50 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:35:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:35:50 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:35:50 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:35:50 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:35:50 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:35:50 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:35:50 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:35:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:35:50 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:35:50 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:35:51 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:35:51 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:36:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:36:05 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:36:05 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:05 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:36:05 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:05 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:36:05 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:36:05 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:36:05 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:36:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:36:05 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:05 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:36:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:36:05 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:36:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:36:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:36:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:05 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:36:05 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:05 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:36:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:36:05 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:36:05 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:36:05 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:36:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:36:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']", 'Expandable')" 2021-12-14 01:36:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] found." 2021-12-14 01:36:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] found." 2021-12-14 01:36:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']", 'Expandable')" 2021-12-14 01:36:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']" 2021-12-14 01:36:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/.. found." 2021-12-14 01:36:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']" 2021-12-14 01:36:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan'] was clicked" 2021-12-14 01:36:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop']", 'Base')" 2021-12-14 01:36:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop'] found." 2021-12-14 01:36:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop'] found." 2021-12-14 01:36:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop']", 'Base')" 2021-12-14 01:36:06 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop']" 2021-12-14 01:36:06 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Fan']/../..//*[contains(@class,'depth2')]//*[text()='Start/Stop'] was clicked" 2021-12-14 01:36:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:36:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:36:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:36:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:36:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:36:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:36:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:36:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:36:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:36:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:36:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:36:08 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:36:08 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:36:08 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:08 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:36:08 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:36:08 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:36:08 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:36:08 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:36:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:36:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:36:09 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:36:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:36:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:36:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:36:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:36:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:36:09 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:09 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:36:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:36:09 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:36:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:36:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:36:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:36:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:36:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:36:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:36:09 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:36:09 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:36:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:36:10 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:36:10 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:10 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:36:10 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:10 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:36:10 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:36:10 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:36:11 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:36:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:36:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:36:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:36:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:36:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:36:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:36:11 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:36:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:36:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:36:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 01:36:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:36:11 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume']", 'Base')" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume'] found." 2021-12-14 01:36:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume'] found." 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume']", 'Base')" 2021-12-14 01:36:11 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume']" 2021-12-14 01:36:11 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume'] was clicked" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:36:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:36:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:36:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:36:12 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:12 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:36:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:36:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:13 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:36:13 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:13 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:36:13 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:36:13 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:36:13 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:36:13 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:36:13 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:13 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:36:13 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:36:14 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:36:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:36:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:36:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:36:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:36:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:36:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:36:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:36:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:14 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:36:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:36:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:36:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:14 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:36:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:36:14 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:36:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:36:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:36:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:14 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:36:14 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:36:14 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:36:14 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:36:14 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:36:14 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:36:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:36:29 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:36:29 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:29 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:36:29 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:29 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:36:29 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:36:29 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:36:29 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:36:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:36:29 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:29 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:36:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:36:29 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:36:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:36:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:36:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:36:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:36:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:36:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:36:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:36:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:36:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:36:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:36:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:36:30 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:30 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:36:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:36:30 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:36:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 01:36:30 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:36:30 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 01:36:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake']", 'Base')" 2021-12-14 01:36:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake'] found." 2021-12-14 01:36:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake'] found." 2021-12-14 01:36:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake']", 'Base')" 2021-12-14 01:36:30 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake']" 2021-12-14 01:36:30 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Intake'] was clicked" 2021-12-14 01:36:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:36:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:36:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:36:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:36:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:36:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:36:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:36:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:36:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:36:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:36:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:36:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:36:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:36:32 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:33 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:36:33 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:36:33 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:36:33 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:36:33 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:36:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:36:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:36:33 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:33 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:36:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:36:33 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:36:33 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:33 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:36:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:36:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:36:33 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:33 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:36:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:36:33 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:36:33 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:36:33 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:36:33 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:33 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:36:33 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:36:33 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:36:33 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:36:34 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:36:34 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:36:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:36:48 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:36:48 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:48 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:36:48 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:48 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:36:48 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:36:48 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:36:49 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:36:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:36:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:36:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:36:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:36:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:36:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:36:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:36:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:36:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:36:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 01:36:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:36:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply']", 'Base')" 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply'] found." 2021-12-14 01:36:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply'] found." 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply']", 'Base')" 2021-12-14 01:36:49 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply']" 2021-12-14 01:36:49 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Volume - Supply'] was clicked" 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:36:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:50 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:36:50 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:50 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:36:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:36:50 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:36:50 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:50 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:36:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:36:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:36:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:36:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:36:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:36:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:36:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:36:52 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:52 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:36:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:36:52 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:36:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:36:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:36:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:36:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:36:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:36:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:36:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:36:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:52 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:36:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:36:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:36:52 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:52 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:36:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:36:52 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:36:52 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:36:52 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:36:52 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:36:52 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:36:52 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:36:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:36:52 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:36:52 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:36:53 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:36:53 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:37:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:37:09 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:37:09 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:09 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:37:09 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:09 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:37:09 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:37:09 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:37:09 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:37:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:37:09 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:09 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:37:09 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:09 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:37:09 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:37:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:37:09 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:37:09 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:37:09 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:09 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:37:09 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:37:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 01:37:09 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:37:09 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume']", 'Base')" 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume'] found." 2021-12-14 01:37:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume'] found." 2021-12-14 01:37:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume']", 'Base')" 2021-12-14 01:37:10 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume']" 2021-12-14 01:37:10 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Volume'] was clicked" 2021-12-14 01:37:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:37:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:10 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:37:10 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:10 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:37:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:37:10 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:37:10 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:10 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:37:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:37:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:12 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:37:12 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:12 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:37:12 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:37:12 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:37:12 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:37:12 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:37:12 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:12 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:37:12 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:37:12 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:37:12 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:37:12 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:37:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:37:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:37:12 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:12 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:37:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:37:12 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:37:13 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:13 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:37:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:37:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:37:13 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:13 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:37:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:37:13 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:37:13 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:37:13 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:37:13 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:13 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:37:13 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:37:13 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:37:13 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:37:13 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:37:13 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:37:28 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:37:28 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:37:28 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:28 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:37:28 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:28 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:37:28 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:37:28 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:37:28 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:37:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:37:28 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:28 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:37:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:37:28 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:37:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:37:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:37:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:37:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:37:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:37:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:37:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:37:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:37:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:37:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:37:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 01:37:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:37:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point']", 'Base')" 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point'] found." 2021-12-14 01:37:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point'] found." 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point']", 'Base')" 2021-12-14 01:37:29 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point']" 2021-12-14 01:37:29 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point'] was clicked" 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:37:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:29 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:37:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:37:29 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:37:29 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:37:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:37:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:37:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:37:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:37:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:37:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:37:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:37:32 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:32 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:37:32 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:37:32 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:37:32 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:37:32 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:37:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:37:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:37:32 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:32 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:37:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:37:32 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:37:32 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:32 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:37:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:37:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:37:33 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:33 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:37:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:37:33 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:37:33 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:37:33 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:37:33 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:33 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:37:33 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:37:33 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:37:33 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:37:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:37:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:37:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:37:48 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:37:48 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:48 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:37:48 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:48 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:37:48 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:37:48 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:37:48 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:37:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:37:48 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:37:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:37:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:37:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:37:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:37:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:37:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:37:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:37:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:37:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:37:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 01:37:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:37:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling']", 'Base')" 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling'] found." 2021-12-14 01:37:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling'] found." 2021-12-14 01:37:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling']", 'Base')" 2021-12-14 01:37:49 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling']" 2021-12-14 01:37:50 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Cooling'] was clicked" 2021-12-14 01:37:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:37:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:50 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:37:50 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:50 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:37:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:37:50 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:37:50 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:50 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:37:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:37:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:37:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:37:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:37:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:37:53 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:37:53 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:37:53 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:53 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:37:53 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:37:53 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:37:53 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:37:53 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:37:53 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:37:53 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:37:53 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:53 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:37:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:37:53 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:37:53 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:53 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:37:53 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:37:53 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:37:53 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:53 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:37:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:37:53 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:37:53 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:37:53 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:37:53 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:37:53 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:37:53 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:37:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:37:53 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:37:53 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:37:53 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:37:53 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:38:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:38:10 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:38:10 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:10 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:38:10 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:10 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:38:10 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:38:10 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:38:10 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:38:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:38:10 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:10 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:38:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:38:10 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:38:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:38:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:38:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:38:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:38:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:38:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:38:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:38:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:38:11 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:38:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:38:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:38:11 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:11 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:38:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:38:11 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:38:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 01:38:11 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:38:11 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 01:38:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating']", 'Base')" 2021-12-14 01:38:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating'] found." 2021-12-14 01:38:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating'] found." 2021-12-14 01:38:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating']", 'Base')" 2021-12-14 01:38:11 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating']" 2021-12-14 01:38:11 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Heating'] was clicked" 2021-12-14 01:38:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:38:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:38:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:38:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:38:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:38:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:38:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:38:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:14 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:38:14 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:14 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:38:14 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:38:14 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:38:14 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:38:14 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:38:14 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:14 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:38:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:38:14 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:38:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:38:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:38:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:38:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:38:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:38:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:38:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:38:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:14 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:38:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:38:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:38:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:14 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:38:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:38:14 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:38:15 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:38:15 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:38:15 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:15 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:38:15 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:38:15 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:38:15 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:38:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:38:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:38:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:38:30 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:38:30 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:30 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:38:30 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:30 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:38:30 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:38:30 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:38:30 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:38:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:38:30 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:38:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:38:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:38:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:38:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:38:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:38:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:38:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:38:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:38:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:38:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 01:38:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:38:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation']", 'Base')" 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation'] found." 2021-12-14 01:38:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation'] found." 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation']", 'Base')" 2021-12-14 01:38:31 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation']" 2021-12-14 01:38:31 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Ventilation'] was clicked" 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:38:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:38:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:38:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:38:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:38:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:38:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:38:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:38:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:34 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:38:34 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:38:34 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:38:34 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:38:34 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:38:34 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:34 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:38:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:38:35 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:38:35 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:38:35 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:38:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:38:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:38:35 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:35 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:38:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:38:35 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:38:35 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:35 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:38:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:38:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:38:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:38:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:38:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:38:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:38:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:38:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:38:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:38:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:38:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:38:35 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:38:35 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:38:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:38:51 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:38:51 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:52 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:38:52 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:52 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:38:52 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:38:52 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:38:52 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:38:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:38:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:38:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:38:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:38:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:38:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:38:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:38:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:38:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:38:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 01:38:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:38:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied']", 'Base')" 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied'] found." 2021-12-14 01:38:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied'] found." 2021-12-14 01:38:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied']", 'Base')" 2021-12-14 01:38:52 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied']" 2021-12-14 01:38:53 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Occupied'] was clicked" 2021-12-14 01:38:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:38:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:38:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:38:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:38:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:38:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:38:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:38:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:55 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:38:55 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:55 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:38:55 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:38:55 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:38:56 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:38:56 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:38:56 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:56 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:38:56 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:38:56 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:38:56 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:38:56 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:38:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:38:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:38:56 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:56 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:38:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:38:56 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:38:56 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:56 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:38:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:38:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:38:56 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:56 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:38:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:38:56 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:38:56 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:38:56 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:38:56 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:38:56 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:38:56 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:38:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:38:56 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:38:56 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:38:57 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:38:57 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:39:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:39:14 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:39:14 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:14 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:39:14 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:14 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:39:14 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:39:14 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:39:14 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:39:14 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:39:14 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:39:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:39:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:39:15 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:15 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:39:15 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:39:15 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:15 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:39:15 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:39:15 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:39:15 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:15 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:39:15 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:39:15 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:15 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 01:39:15 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:39:15 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied']", 'Base')" 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied'] found." 2021-12-14 01:39:15 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:15 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied'] found." 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied']", 'Base')" 2021-12-14 01:39:15 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied']" 2021-12-14 01:39:15 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Unoccupied'] was clicked" 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:15 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:39:15 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:16 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:39:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:39:16 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:39:16 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:16 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:39:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:39:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:18 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:39:18 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:18 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:39:18 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:39:18 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:39:18 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:39:18 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:39:18 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:18 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:39:18 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:39:18 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:39:18 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:39:18 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:39:18 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:39:18 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:18 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:39:18 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:18 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:39:18 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:39:18 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:39:19 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:19 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:39:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:39:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:39:19 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:19 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:39:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:39:19 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:39:19 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:39:19 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:39:19 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:19 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:39:19 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:39:19 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:39:19 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:39:19 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:39:19 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:39:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:39:36 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:39:36 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:36 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:39:36 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:36 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:39:36 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:39:36 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:39:36 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:39:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:39:36 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:36 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:39:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:39:36 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:39:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:39:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:39:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:39:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:37 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:39:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:39:37 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:39:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:39:37 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:39:37 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:39:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:39:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:39:37 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:37 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:39:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:39:37 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:39:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 01:39:37 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:39:37 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 01:39:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby']", 'Base')" 2021-12-14 01:39:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby'] found." 2021-12-14 01:39:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby'] found." 2021-12-14 01:39:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby']", 'Base')" 2021-12-14 01:39:37 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby']" 2021-12-14 01:39:37 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Standby'] was clicked" 2021-12-14 01:39:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:39:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:37 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:39:37 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:37 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:39:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:39:37 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:39:37 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:37 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:39:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:39:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:40 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:39:40 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:40 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:39:40 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:39:40 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:39:40 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:39:40 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:39:40 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:40 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:39:40 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:39:40 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:39:40 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:39:40 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:39:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:39:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:39:40 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:40 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:39:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:39:40 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:39:40 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:40 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:39:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:39:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:39:41 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:41 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:39:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:39:41 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:39:41 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:39:41 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:39:41 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:41 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:39:41 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:39:41 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:39:41 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:39:41 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:39:41 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:39:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:39:57 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:39:57 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:57 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:39:57 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:57 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:39:57 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:39:57 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:39:57 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:39:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:39:57 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:57 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:39:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:39:57 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:39:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:39:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:39:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:57 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:39:57 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:58 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:39:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:39:58 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:39:58 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:58 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:39:58 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:39:58 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:39:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:39:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:58 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:39:58 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:58 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:39:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:39:58 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:39:58 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:58 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 01:39:58 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:39:58 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 01:39:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum']", 'Base')" 2021-12-14 01:39:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:58 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum'] found." 2021-12-14 01:39:58 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:58 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum'] found." 2021-12-14 01:39:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum']", 'Base')" 2021-12-14 01:39:58 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum']" 2021-12-14 01:39:58 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Minimum'] was clicked" 2021-12-14 01:39:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:39:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:39:58 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:39:58 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:58 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:39:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:39:58 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:39:58 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:39:58 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:40:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:40:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:01 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:40:01 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:01 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:40:01 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:40:01 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:40:01 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:40:01 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:40:01 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:01 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:40:01 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:40:01 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:40:01 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:40:01 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:40:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:40:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:40:01 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:01 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:40:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:40:01 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:40:01 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:01 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:40:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:40:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:40:02 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:02 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:40:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:40:02 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:40:02 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:40:02 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:40:02 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:02 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:40:02 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:40:02 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:40:02 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:40:02 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:40:02 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:40:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:40:21 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:40:21 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:21 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:40:21 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:21 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:40:21 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:40:21 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:40:22 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:40:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:40:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:40:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:40:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:40:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:40:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:40:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:40:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] found." 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']", 'Expandable')" 2021-12-14 01:40:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:40:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/.. found." 2021-12-14 01:40:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']" 2021-12-14 01:40:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow'] was clicked" 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum']", 'Base')" 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum'] found." 2021-12-14 01:40:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum'] found." 2021-12-14 01:40:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum']", 'Base')" 2021-12-14 01:40:22 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum']" 2021-12-14 01:40:23 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Flow']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Set Point - Maximum'] was clicked" 2021-12-14 01:40:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:40:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:40:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:40:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:40:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:40:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:40:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:40:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:40:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:40:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:40:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:40:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:40:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:40:25 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:25 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:40:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:40:25 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:40:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:40:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:40:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:40:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:40:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:40:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:40:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:40:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:40:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:40:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:40:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:40:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:40:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:40:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:40:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:40:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:40:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:40:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:40:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:40:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:40:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:40:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:40:45 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:40:45 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:45 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:40:45 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:45 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:40:45 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:40:45 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:40:45 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:40:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:40:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:40:45 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:45 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:40:45 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:40:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:40:45 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:40:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 01:40:45 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:45 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 01:40:45 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 01:40:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. found." 2021-12-14 01:40:45 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 01:40:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] was clicked" 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator']", 'Base')" 2021-12-14 01:40:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator'] found." 2021-12-14 01:40:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator'] found." 2021-12-14 01:40:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator']", 'Base')" 2021-12-14 01:40:46 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator']" 2021-12-14 01:40:46 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator'] was clicked" 2021-12-14 01:40:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:40:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:46 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:40:46 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:46 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:40:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:40:46 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:40:46 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:46 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:40:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:40:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:48 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:40:48 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:48 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:40:48 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:40:48 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:40:48 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:40:48 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:40:48 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:48 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:40:48 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:40:48 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:40:48 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:40:48 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:40:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:40:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:40:49 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:49 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:40:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:40:49 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:40:49 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:49 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:40:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:40:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:40:49 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:49 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:40:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:40:49 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:40:49 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:40:49 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:40:49 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:40:49 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:40:49 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:40:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:40:49 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:40:49 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:40:49 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:40:49 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:41:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:41:06 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:41:06 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:06 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:41:06 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:06 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:41:06 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:41:06 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:41:06 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:41:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:41:06 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:06 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:41:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:07 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:41:07 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:07 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:41:07 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:07 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:41:07 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:41:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:41:07 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:41:07 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 01:41:07 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:07 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 01:41:07 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 01:41:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. found." 2021-12-14 01:41:07 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 01:41:07 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] was clicked" 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling']", 'Base')" 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling'] found." 2021-12-14 01:41:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling'] found." 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling']", 'Base')" 2021-12-14 01:41:07 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling']" 2021-12-14 01:41:07 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Cooling'] was clicked" 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:41:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:08 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:41:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:41:08 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:41:08 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:08 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:41:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:41:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:10 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:41:10 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:10 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:41:10 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:41:10 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:41:10 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:41:10 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:41:10 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:10 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:41:10 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:41:10 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:41:10 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:41:10 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:41:10 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:41:10 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:10 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:41:10 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:10 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:41:10 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:41:10 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:41:10 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:10 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:41:11 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:41:11 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:11 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:41:11 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:11 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:41:11 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:41:11 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:41:11 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:41:11 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:41:11 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:11 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:41:11 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:41:11 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:41:11 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:41:11 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:41:11 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:41:28 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:41:28 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:41:28 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:28 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:41:28 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:28 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:41:28 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:41:28 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:41:28 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:41:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:41:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:41:28 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:28 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:41:28 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:41:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:41:28 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:41:28 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 01:41:28 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:28 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 01:41:28 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 01:41:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. found." 2021-12-14 01:41:28 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 01:41:28 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] was clicked" 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating']", 'Base')" 2021-12-14 01:41:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating'] found." 2021-12-14 01:41:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating'] found." 2021-12-14 01:41:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating']", 'Base')" 2021-12-14 01:41:29 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating']" 2021-12-14 01:41:29 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='2-way Actuator Heating'] was clicked" 2021-12-14 01:41:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:41:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:41:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:29 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:41:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:41:29 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:41:29 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:29 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:41:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:41:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:31 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:41:31 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:31 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:41:31 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:41:31 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:41:31 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:41:31 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:41:31 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:31 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:41:31 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:41:31 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:41:31 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:41:32 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:41:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:41:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:41:32 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:32 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:41:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:41:32 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:41:32 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:32 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:41:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:41:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:41:32 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:32 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:41:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:41:32 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:41:32 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:41:32 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:41:32 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:32 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:41:32 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:32 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:41:32 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:41:32 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:41:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:41:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:41:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:41:50 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:41:50 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:50 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:41:50 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:50 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:41:50 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:41:50 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:41:50 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:41:50 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:50 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:41:50 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:50 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:41:50 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:50 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:41:50 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:41:50 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:50 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:41:50 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:41:50 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 01:41:50 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:50 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 01:41:50 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 01:41:50 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:50 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. found." 2021-12-14 01:41:50 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 01:41:50 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] was clicked" 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling']", 'Base')" 2021-12-14 01:41:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:51 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling'] found." 2021-12-14 01:41:51 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:51 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling'] found." 2021-12-14 01:41:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling']", 'Base')" 2021-12-14 01:41:51 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling']" 2021-12-14 01:41:51 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Cooling'] was clicked" 2021-12-14 01:41:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:41:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:51 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:41:51 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:51 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:41:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:41:51 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:41:51 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:51 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:41:53 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:41:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:53 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:41:54 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:54 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:41:54 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:41:54 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:41:54 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:41:54 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:41:54 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:54 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:41:54 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:41:54 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:41:54 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:41:54 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:41:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:41:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:41:54 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:54 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:41:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:41:54 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:41:54 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:54 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:41:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:41:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:41:54 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:54 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:41:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:41:54 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:41:55 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:41:55 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:41:55 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:41:55 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:41:55 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:41:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:41:55 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:41:55 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:41:55 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:41:55 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:42:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:42:12 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:42:12 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:12 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:42:12 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:12 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:42:12 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:42:12 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:42:12 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:42:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:42:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:42:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:42:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:42:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:42:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:42:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 01:42:12 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:12 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 01:42:12 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 01:42:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:12 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. found." 2021-12-14 01:42:12 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 01:42:12 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] was clicked" 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating']", 'Base')" 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:12 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating'] found." 2021-12-14 01:42:12 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating'] found." 2021-12-14 01:42:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating']", 'Base')" 2021-12-14 01:42:13 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating']" 2021-12-14 01:42:13 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='3-way Actuator Heating'] was clicked" 2021-12-14 01:42:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:42:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:13 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:42:13 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:13 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:42:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:42:13 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:42:13 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:13 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:42:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:42:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:15 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:42:15 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:15 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:42:15 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:42:15 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:42:15 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:42:15 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:42:15 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:15 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:42:15 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:42:15 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:42:15 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:42:15 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:42:15 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:42:15 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:15 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:42:15 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:15 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:42:15 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:42:15 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:42:15 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:42:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:42:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:42:16 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:16 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:42:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:42:16 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:42:16 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:42:16 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:42:16 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:16 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:42:16 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:16 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:42:16 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:42:16 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:42:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:42:17 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:42:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:42:36 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:42:36 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:36 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:42:36 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:36 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:42:36 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:42:36 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:42:36 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:42:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:42:36 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:36 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:42:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:42:36 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:42:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:42:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:42:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:42:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC'] found." 2021-12-14 01:42:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']", 'Expandable')" 2021-12-14 01:42:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:42:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/.. found." 2021-12-14 01:42:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']" 2021-12-14 01:42:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC'] was clicked" 2021-12-14 01:42:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 01:42:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 01:42:37 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:37 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] found." 2021-12-14 01:42:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']", 'Expandable')" 2021-12-14 01:42:37 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 01:42:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/.. found." 2021-12-14 01:42:37 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']" 2021-12-14 01:42:37 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve'] was clicked" 2021-12-14 01:42:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator']", 'Base')" 2021-12-14 01:42:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator'] found." 2021-12-14 01:42:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator'] found." 2021-12-14 01:42:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator']", 'Base')" 2021-12-14 01:42:37 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator']" 2021-12-14 01:42:37 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='HVAC']/../..//*[text()='Valve']/../..//*[contains(@class,'depth2')]//*[text()='6-way Actuator'] was clicked" 2021-12-14 01:42:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:42:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:37 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:42:37 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:37 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:42:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:42:37 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:42:37 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:37 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:42:39 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:42:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:39 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:42:39 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:39 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:42:39 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:42:39 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:42:39 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:42:39 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:42:39 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:39 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:42:39 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:42:40 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:42:40 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:42:40 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:42:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:42:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:42:40 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:40 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:42:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:42:40 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:42:40 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:40 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:42:40 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:42:40 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:42:40 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:40 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:42:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:42:40 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:42:40 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:42:40 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:42:40 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:40 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:42:40 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:42:40 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:42:40 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:42:41 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:42:41 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:42:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:42:58 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:42:58 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:58 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:42:58 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:58 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:42:58 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:42:58 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:42:58 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:42:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:42:58 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:58 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:42:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:42:58 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:42:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:42:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 01:42:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:58 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 01:42:58 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:58 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 01:42:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 01:42:58 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 01:42:58 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:58 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/.. found." 2021-12-14 01:42:58 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 01:42:59 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light'] was clicked" 2021-12-14 01:42:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu']", 'Base')" 2021-12-14 01:42:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:59 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu'] found." 2021-12-14 01:42:59 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:59 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu'] found." 2021-12-14 01:42:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu']", 'Base')" 2021-12-14 01:42:59 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu']" 2021-12-14 01:42:59 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Auto/Manu'] was clicked" 2021-12-14 01:42:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:42:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:42:59 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:42:59 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:59 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:42:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:42:59 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:42:59 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:42:59 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:43:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:43:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:00 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:43:00 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:00 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:43:00 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:43:00 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:43:01 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:43:01 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:43:01 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:01 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:43:01 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:43:01 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:43:01 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:43:01 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:43:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:43:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:43:01 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:01 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:43:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:43:01 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:43:01 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:01 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:43:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:43:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:43:01 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:01 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:43:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:43:01 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:43:01 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:43:01 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:43:01 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:01 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:43:01 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:43:01 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:43:01 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:43:01 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:43:01 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:43:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:43:19 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:43:19 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:19 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:43:19 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:19 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:43:19 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:43:19 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:43:20 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:43:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:43:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 01:43:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 01:43:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 01:43:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/.. found." 2021-12-14 01:43:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 01:43:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light'] was clicked" 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off']", 'Base')" 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off'] found." 2021-12-14 01:43:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off'] found." 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off']", 'Base')" 2021-12-14 01:43:20 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off']" 2021-12-14 01:43:20 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='On/Off'] was clicked" 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:43:20 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:43:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:43:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:43:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:43:21 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:43:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:21 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:43:21 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:21 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:43:21 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:43:21 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:43:21 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:43:21 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:43:21 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:22 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:43:22 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:43:22 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:43:22 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:43:22 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:43:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:43:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:43:22 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:22 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:43:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:43:22 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:43:22 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:22 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:43:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:43:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:43:22 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:22 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:43:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:43:22 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:43:22 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:43:22 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:43:22 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:22 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:43:22 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:43:22 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:43:22 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:43:22 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:43:22 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:43:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:43:39 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:43:39 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:39 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:43:39 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:39 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:43:39 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:43:39 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:43:40 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:43:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:43:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 01:43:40 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:40 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 01:43:40 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 01:43:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/.. found." 2021-12-14 01:43:40 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 01:43:40 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light'] was clicked" 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time']", 'Base')" 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time'] found." 2021-12-14 01:43:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time'] found." 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time']", 'Base')" 2021-12-14 01:43:40 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time']" 2021-12-14 01:43:40 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Bounce Time'] was clicked" 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:43:40 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:43:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:43:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:43:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:43:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:43:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:42 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:43:42 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:42 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:43:42 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:43:42 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:43:42 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:43:42 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:43:42 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:42 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:43:42 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:43:42 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:43:42 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:43:42 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:43:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:43:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:43:42 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:42 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:43:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:43:42 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:43:42 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:42 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:43:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:43:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:43:42 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:42 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:43:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:43:42 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:43:43 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:43:43 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:43:43 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:43:43 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:43:43 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:43:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:43:43 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:43:43 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:43:43 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:43:43 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:44:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:44:01 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:44:01 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:01 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:44:01 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:01 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:44:01 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:44:01 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:44:01 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:44:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:44:01 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:01 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:44:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:44:01 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:44:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:44:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 01:44:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 01:44:01 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:01 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 01:44:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 01:44:01 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 01:44:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/.. found." 2021-12-14 01:44:01 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 01:44:01 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light'] was clicked" 2021-12-14 01:44:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness']", 'Base')" 2021-12-14 01:44:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness'] found." 2021-12-14 01:44:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness'] found." 2021-12-14 01:44:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness']", 'Base')" 2021-12-14 01:44:01 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness']" 2021-12-14 01:44:02 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Brightness'] was clicked" 2021-12-14 01:44:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:44:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:44:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:44:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:44:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:44:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:44:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:44:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:03 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:44:03 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:03 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:44:03 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:44:03 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:44:03 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:44:03 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:44:03 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:03 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:44:03 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:44:04 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:44:04 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:44:04 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:44:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:44:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:44:04 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:04 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:44:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:44:04 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:44:04 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:04 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:44:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:44:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:44:04 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:04 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:44:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:44:04 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:44:04 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:44:04 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:44:04 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:04 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:44:04 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:44:04 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:44:04 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:44:05 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:44:05 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:44:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:44:22 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:44:22 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:22 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:44:22 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:22 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:44:22 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:44:22 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:44:22 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:44:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:44:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:22 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:44:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:44:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:44:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:44:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 01:44:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 01:44:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:23 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 01:44:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 01:44:23 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 01:44:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/.. found." 2021-12-14 01:44:23 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 01:44:23 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light'] was clicked" 2021-12-14 01:44:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming']", 'Base')" 2021-12-14 01:44:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming'] found." 2021-12-14 01:44:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming'] found." 2021-12-14 01:44:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming']", 'Base')" 2021-12-14 01:44:23 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming']" 2021-12-14 01:44:23 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Dimming'] was clicked" 2021-12-14 01:44:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:44:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:44:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:44:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:44:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:44:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:44:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:44:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:24 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:44:24 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:24 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:44:24 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:44:24 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:44:24 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:44:24 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:44:24 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:24 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:44:24 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:44:25 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:44:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:44:25 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:44:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:44:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:44:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:44:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:44:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:44:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:44:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:44:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:44:25 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:25 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:44:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:44:25 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:44:25 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:44:25 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:44:25 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:25 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:44:25 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:44:25 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:44:25 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:44:25 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:44:25 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:44:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:44:43 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:44:43 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:43 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:44:43 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:43 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:44:43 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:44:43 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:44:44 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:44:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:44:44 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:44 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 01:44:44 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:44 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light'] found." 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']", 'Expandable')" 2021-12-14 01:44:44 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 01:44:44 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:44 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/.. found." 2021-12-14 01:44:44 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']" 2021-12-14 01:44:44 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light'] was clicked" 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth']", 'Base')" 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth'] found." 2021-12-14 01:44:44 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:44 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth'] found." 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth']", 'Base')" 2021-12-14 01:44:44 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth']" 2021-12-14 01:44:44 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Light']/../..//*[text()='Warmth'] was clicked" 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:44:44 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:44 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:44:44 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:44:44 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:44:44 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:44 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:44:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:44:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:46 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:44:46 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:46 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:44:46 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:44:46 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:44:46 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:44:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:44:46 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:46 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:44:46 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:44:46 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:44:46 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:44:46 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:44:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:44:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:44:46 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:46 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:44:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:44:46 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:44:46 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:46 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:44:46 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:44:46 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:46 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:44:46 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:46 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:44:46 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:44:46 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:44:46 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:44:46 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:44:46 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:44:46 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:44:46 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:44:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:44:46 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:44:46 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:44:47 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:44:47 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:45:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:45:05 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:45:05 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:05 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:45:05 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:05 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:45:05 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:45:05 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:45:05 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:45:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:45:05 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:05 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:45:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:45:05 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:45:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:45:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:45:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:05 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:45:05 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:05 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:45:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:45:05 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:45:05 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:45:05 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:45:05 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:45:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 01:45:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:05 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 01:45:05 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 01:45:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 01:45:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 01:45:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. found." 2021-12-14 01:45:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 01:45:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] was clicked" 2021-12-14 01:45:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level']", 'Base')" 2021-12-14 01:45:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level'] found." 2021-12-14 01:45:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level'] found." 2021-12-14 01:45:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level']", 'Base')" 2021-12-14 01:45:06 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level']" 2021-12-14 01:45:06 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Level'] was clicked" 2021-12-14 01:45:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:45:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:45:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:45:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:45:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:45:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:45:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:45:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:45:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:45:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:45:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:45:08 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:45:08 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:45:08 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:08 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:45:08 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:45:08 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:45:08 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:45:08 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:45:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:45:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:45:08 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:08 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:45:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:45:08 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:45:08 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:08 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:45:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:45:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:45:08 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:08 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:45:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:45:08 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:45:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:45:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:45:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:45:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:45:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:45:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:45:09 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:45:09 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:45:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:45:27 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:45:27 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:27 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:45:27 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:27 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:45:27 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:45:27 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:45:28 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:45:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:45:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:45:28 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:28 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:45:28 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:45:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:45:28 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:45:28 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 01:45:28 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:28 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 01:45:28 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 01:45:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. found." 2021-12-14 01:45:28 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 01:45:28 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] was clicked" 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point']", 'Base')" 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point'] found." 2021-12-14 01:45:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:28 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point'] found." 2021-12-14 01:45:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point']", 'Base')" 2021-12-14 01:45:28 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point']" 2021-12-14 01:45:29 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='CO2 Set Point'] was clicked" 2021-12-14 01:45:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:45:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:45:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:29 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:45:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:45:29 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:45:29 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:29 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:45:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:45:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:31 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:45:31 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:31 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:45:31 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:45:31 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:45:31 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:45:31 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:45:31 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:31 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:45:31 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:45:31 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:45:31 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:45:31 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:45:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:45:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:45:31 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:31 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:45:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:45:31 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:45:31 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:31 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:45:31 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:45:31 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:31 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:45:31 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:31 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:45:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:45:31 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:45:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:45:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:45:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:45:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:32 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:45:32 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:45:32 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:45:32 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:45:32 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:45:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:45:51 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:45:51 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:51 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:45:51 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:51 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:45:51 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:45:51 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:45:51 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:45:51 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:45:51 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:51 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:45:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:45:51 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:45:51 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:51 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:45:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:45:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:51 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:45:51 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:51 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:45:51 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:45:51 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:45:51 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:51 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:45:51 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:45:51 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:45:51 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 01:45:51 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:51 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 01:45:51 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 01:45:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 01:45:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 01:45:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. found." 2021-12-14 01:45:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 01:45:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] was clicked" 2021-12-14 01:45:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level']", 'Base')" 2021-12-14 01:45:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level'] found." 2021-12-14 01:45:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level'] found." 2021-12-14 01:45:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level']", 'Base')" 2021-12-14 01:45:52 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level']" 2021-12-14 01:45:52 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Level'] was clicked" 2021-12-14 01:45:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:45:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:52 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:45:52 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:52 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:45:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:45:52 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:45:52 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:52 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:45:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:45:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:54 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:45:54 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:54 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:45:54 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:45:54 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:45:54 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:45:54 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:45:54 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:54 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:45:54 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:45:54 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:45:54 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:45:54 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:45:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:45:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:45:54 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:54 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:45:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:45:54 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:45:54 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:54 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:45:54 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:45:54 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:54 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:45:54 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:54 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:45:54 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:45:54 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:45:54 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:45:54 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:45:54 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:45:54 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:45:54 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:45:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:45:55 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:45:55 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:45:55 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:45:55 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:46:15 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:46:15 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:46:15 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:15 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:46:15 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:15 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:46:15 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:46:15 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:46:16 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:46:16 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:16 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:46:16 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:16 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:46:16 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:16 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:46:16 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:46:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:46:16 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:46:16 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 01:46:16 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:16 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 01:46:16 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 01:46:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. found." 2021-12-14 01:46:16 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 01:46:16 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] was clicked" 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point']", 'Base')" 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point'] found." 2021-12-14 01:46:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point'] found." 2021-12-14 01:46:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point']", 'Base')" 2021-12-14 01:46:16 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point']" 2021-12-14 01:46:17 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='VOC Set Point'] was clicked" 2021-12-14 01:46:17 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:46:17 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:17 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:46:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:46:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:46:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:46:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:46:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:46:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:19 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:46:19 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:19 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:46:19 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:46:19 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:46:19 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:46:19 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:46:19 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:19 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:46:19 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:46:19 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:46:19 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:46:19 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:46:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:46:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:46:19 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:19 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:46:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:46:19 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:46:19 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:19 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:46:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:46:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:46:19 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:19 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:46:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:46:19 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:46:19 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:46:19 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:46:19 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:19 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:46:19 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:46:19 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:46:19 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:46:20 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:46:20 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:46:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:46:40 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:46:40 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:40 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:46:40 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:40 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:46:40 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:46:40 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:46:40 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:46:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:46:40 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:40 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:46:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:46:40 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:46:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:46:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:46:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:46:40 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:40 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:46:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:46:40 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:46:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:46:40 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:46:40 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:46:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 01:46:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 01:46:40 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:41 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 01:46:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 01:46:41 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 01:46:41 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:41 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. found." 2021-12-14 01:46:41 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 01:46:41 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] was clicked" 2021-12-14 01:46:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke']", 'Base')" 2021-12-14 01:46:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:41 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke'] found." 2021-12-14 01:46:41 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:41 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke'] found." 2021-12-14 01:46:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke']", 'Base')" 2021-12-14 01:46:41 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke']" 2021-12-14 01:46:41 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Smoke'] was clicked" 2021-12-14 01:46:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:46:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:41 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:46:41 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:41 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:46:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:46:41 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:46:41 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:41 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:46:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:46:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:43 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:46:43 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:43 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:46:43 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:46:43 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:46:43 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:46:43 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:46:43 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:43 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:46:43 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:46:43 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:46:43 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:46:43 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:46:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:46:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:46:43 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:43 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:46:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:46:43 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:46:43 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:43 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:46:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:46:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:46:43 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:43 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:46:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:46:43 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:46:43 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:46:43 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:46:43 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:46:43 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:46:43 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:46:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:46:43 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:46:43 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:46:44 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:46:44 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:47:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:47:03 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:47:03 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:03 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:47:03 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:03 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:47:03 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:47:03 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:47:03 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:47:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:47:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:47:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:47:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:47:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:47:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:47:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 01:47:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] found." 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']", 'Expandable')" 2021-12-14 01:47:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 01:47:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/.. found." 2021-12-14 01:47:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']" 2021-12-14 01:47:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air'] was clicked" 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point']", 'Base')" 2021-12-14 01:47:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:04 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point'] found." 2021-12-14 01:47:04 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:04 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point'] found." 2021-12-14 01:47:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point']", 'Base')" 2021-12-14 01:47:04 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point']" 2021-12-14 01:47:04 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Air']/../..//*[contains(@class,'depth2')]//*[text()='Dew Point'] was clicked" 2021-12-14 01:47:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:47:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:47:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:47:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:47:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:47:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:47:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:47:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:47:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:47:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:47:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:47:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:47:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:47:06 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:06 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:47:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:47:06 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:47:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:47:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:47:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:47:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:47:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:47:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:47:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:47:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:47:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:47:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:47:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:47:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:47:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:47:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:47:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:47:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:47:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:47:06 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:47:06 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:47:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:47:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:47:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:47:25 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:47:25 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:25 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:47:25 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:25 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:47:25 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:47:25 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:47:25 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:47:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:47:25 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:25 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:47:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:47:25 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:47:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:47:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:47:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:25 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:47:25 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:25 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:47:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:47:25 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:47:25 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:25 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:47:25 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:47:26 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:47:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']", 'Expandable')" 2021-12-14 01:47:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] found." 2021-12-14 01:47:26 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:26 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] found." 2021-12-14 01:47:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']", 'Expandable')" 2021-12-14 01:47:26 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']" 2021-12-14 01:47:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/.. found." 2021-12-14 01:47:26 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']" 2021-12-14 01:47:26 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] was clicked" 2021-12-14 01:47:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level']", 'Base')" 2021-12-14 01:47:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:26 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level'] found." 2021-12-14 01:47:26 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:26 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level'] found." 2021-12-14 01:47:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level']", 'Base')" 2021-12-14 01:47:26 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level']" 2021-12-14 01:47:26 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Level'] was clicked" 2021-12-14 01:47:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:47:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:26 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:47:26 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:26 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:47:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:47:26 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:47:26 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:26 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:47:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:47:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:28 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:47:28 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:28 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:47:28 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:47:28 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:47:29 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:47:29 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:47:29 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:29 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:47:29 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:47:29 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:47:29 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:47:29 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:47:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:47:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:47:29 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:29 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:47:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:47:29 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:47:29 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:29 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:47:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:47:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:47:29 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:29 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:47:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:47:29 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:47:29 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:47:29 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:47:29 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:29 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:47:29 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:47:30 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:47:30 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:47:30 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:47:30 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:47:48 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:47:48 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:47:48 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:48 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:47:48 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:48 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:47:48 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:47:48 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:47:49 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:47:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:47:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:47:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:47:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:47:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:47:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:47:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']", 'Expandable')" 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] found." 2021-12-14 01:47:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] found." 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']", 'Expandable')" 2021-12-14 01:47:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']" 2021-12-14 01:47:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/.. found." 2021-12-14 01:47:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']" 2021-12-14 01:47:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery'] was clicked" 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage']", 'Base')" 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage'] found." 2021-12-14 01:47:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage'] found." 2021-12-14 01:47:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage']", 'Base')" 2021-12-14 01:47:49 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage']" 2021-12-14 01:47:50 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Battery']/../..//*[contains(@class,'depth2')]//*[text()='Battery Voltage'] was clicked" 2021-12-14 01:47:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:47:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:50 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:47:50 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:50 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:47:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:47:50 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:47:50 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:50 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:47:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:47:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:47:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:47:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:47:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:47:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:47:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:47:52 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:52 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:47:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:47:52 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:47:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:47:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:47:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:47:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:47:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:47:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:47:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:47:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:52 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:47:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:47:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:47:53 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:53 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:47:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:47:53 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:47:53 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:47:53 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:47:53 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:47:53 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:47:53 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:47:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:47:53 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:47:53 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:47:54 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:47:54 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:48:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:48:12 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:48:12 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:12 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:48:12 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:12 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:48:12 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:48:12 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:48:12 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:48:12 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:48:12 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:12 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:48:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:12 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:48:12 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:48:12 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:48:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:48:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:48:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:48:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:48:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:48:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:48:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:48:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:48:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']", 'Expandable')" 2021-12-14 01:48:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] found." 2021-12-14 01:48:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] found." 2021-12-14 01:48:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']", 'Expandable')" 2021-12-14 01:48:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']" 2021-12-14 01:48:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/.. found." 2021-12-14 01:48:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']" 2021-12-14 01:48:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] was clicked" 2021-12-14 01:48:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door']", 'Base')" 2021-12-14 01:48:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door'] found." 2021-12-14 01:48:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door'] found." 2021-12-14 01:48:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door']", 'Base')" 2021-12-14 01:48:13 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door']" 2021-12-14 01:48:14 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Door'] was clicked" 2021-12-14 01:48:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:48:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:14 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:48:14 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:14 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:48:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:48:14 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:48:14 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:14 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:48:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:48:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:16 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:48:16 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:16 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:48:16 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:48:16 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:48:16 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:48:16 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:48:16 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:16 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:48:16 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:48:16 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:48:16 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:48:16 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:48:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:48:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:48:16 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:16 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:48:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:48:16 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:48:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:48:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:48:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:48:16 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:16 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:48:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:48:16 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:48:17 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:48:17 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:48:17 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:17 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:48:17 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:48:17 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:48:17 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:48:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:48:17 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:48:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:48:36 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:48:36 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:36 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:48:36 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:36 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:48:36 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:48:36 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:48:36 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:48:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:48:36 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:36 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:48:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:48:36 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:48:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:48:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:48:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:48:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:48:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:48:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:48:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:48:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:48:37 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:48:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']", 'Expandable')" 2021-12-14 01:48:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] found." 2021-12-14 01:48:37 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:37 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] found." 2021-12-14 01:48:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']", 'Expandable')" 2021-12-14 01:48:37 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']" 2021-12-14 01:48:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/.. found." 2021-12-14 01:48:37 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']" 2021-12-14 01:48:37 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact'] was clicked" 2021-12-14 01:48:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window']", 'Base')" 2021-12-14 01:48:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window'] found." 2021-12-14 01:48:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window'] found." 2021-12-14 01:48:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window']", 'Base')" 2021-12-14 01:48:37 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window']" 2021-12-14 01:48:37 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Contact']/../..//*[contains(@class,'depth2')]//*[text()='Window'] was clicked" 2021-12-14 01:48:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:48:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:37 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:48:37 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:37 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:48:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:48:37 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:48:37 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:37 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:48:39 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:48:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:39 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:48:39 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:39 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:48:39 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:48:39 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:48:39 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:48:39 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:48:39 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:39 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:48:39 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:48:39 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:48:39 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:48:39 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:48:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:48:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:48:39 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:39 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:48:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:48:39 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:48:39 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:39 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:48:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:48:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:40 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:48:40 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:40 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:48:40 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:48:40 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:48:40 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:48:40 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:48:40 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:40 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:48:40 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:48:40 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:48:40 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:48:40 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:48:40 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:48:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:48:59 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:48:59 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:59 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:48:59 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:59 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:48:59 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:48:59 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:48:59 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:48:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:48:59 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:48:59 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:48:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:59 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:48:59 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:48:59 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:48:59 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:48:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:48:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:49:00 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:00 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:49:00 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:49:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:49:00 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:49:00 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment'] found." 2021-12-14 01:49:00 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:00 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment'] found." 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 01:49:00 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']" 2021-12-14 01:49:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/.. found." 2021-12-14 01:49:00 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']" 2021-12-14 01:49:00 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment'] was clicked" 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours']", 'Base')" 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours'] found." 2021-12-14 01:49:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours'] found." 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours']", 'Base')" 2021-12-14 01:49:00 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours']" 2021-12-14 01:49:00 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Run Hours'] was clicked" 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:49:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:49:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:49:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:49:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:49:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:49:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:02 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:49:02 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:02 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:49:02 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:49:02 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:49:03 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:49:03 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:49:03 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:03 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:49:03 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:49:03 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:49:03 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:49:03 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:49:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:49:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:49:03 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:03 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:49:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:49:03 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:49:03 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:03 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:49:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:49:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:49:03 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:03 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:49:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:49:03 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:49:03 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:49:03 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:49:03 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:03 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:49:03 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:49:03 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:49:03 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:49:04 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:49:04 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:49:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:49:23 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:49:23 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:23 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:49:23 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:23 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:49:23 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:49:23 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:49:23 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:49:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:49:23 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:49:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:49:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:49:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:49:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:49:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:49:23 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:23 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:49:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:49:23 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:49:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:24 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:49:24 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:49:24 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:49:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']", 'Expandable')" 2021-12-14 01:49:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:24 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] found." 2021-12-14 01:49:24 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:24 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] found." 2021-12-14 01:49:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']", 'Expandable')" 2021-12-14 01:49:24 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']" 2021-12-14 01:49:24 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:24 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/.. found." 2021-12-14 01:49:24 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']" 2021-12-14 01:49:24 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] was clicked" 2021-12-14 01:49:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute']", 'Base')" 2021-12-14 01:49:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:24 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute'] found." 2021-12-14 01:49:24 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:24 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute'] found." 2021-12-14 01:49:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute']", 'Base')" 2021-12-14 01:49:24 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute']" 2021-12-14 01:49:24 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Absolute'] was clicked" 2021-12-14 01:49:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:49:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:24 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:49:24 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:24 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:49:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:49:24 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:49:24 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:49:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:49:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:49:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:49:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:49:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:49:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:49:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:49:26 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:26 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:49:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:49:27 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:49:27 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:49:27 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:49:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:49:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:49:27 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:27 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:49:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:49:27 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:49:27 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:27 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:49:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:49:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:49:27 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:27 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:49:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:49:27 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:49:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:49:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:49:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:49:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:49:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:49:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:49:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:49:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:49:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:49:49 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:49:49 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:49 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:49:49 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:49 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:49:49 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:49:49 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:49:49 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:49:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:49:49 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:49 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:49:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:49:49 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:49:49 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:49 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:49:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:49:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:49 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:49:49 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:49 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:49:49 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:49:49 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:49:49 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:49 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:49:49 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:49:49 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:49:49 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']", 'Expandable')" 2021-12-14 01:49:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:50 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] found." 2021-12-14 01:49:50 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:50 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] found." 2021-12-14 01:49:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']", 'Expandable')" 2021-12-14 01:49:50 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']" 2021-12-14 01:49:50 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:50 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/.. found." 2021-12-14 01:49:50 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']" 2021-12-14 01:49:50 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity'] was clicked" 2021-12-14 01:49:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative']", 'Base')" 2021-12-14 01:49:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:50 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative'] found." 2021-12-14 01:49:50 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:50 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative'] found." 2021-12-14 01:49:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative']", 'Base')" 2021-12-14 01:49:50 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative']" 2021-12-14 01:49:50 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Humidity']/../..//*[contains(@class,'depth2')]//*[text()='Relative'] was clicked" 2021-12-14 01:49:50 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:49:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:50 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:49:50 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:50 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:49:50 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:49:50 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:49:50 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:50 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:49:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:49:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:52 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:49:52 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:52 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:49:52 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:49:52 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:49:52 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:49:52 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:49:52 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:52 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:49:52 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:49:52 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:49:52 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:49:52 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:49:52 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:49:52 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:52 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:49:52 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:52 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:49:52 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:49:52 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:49:52 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:53 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:49:53 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:49:53 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:53 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:49:53 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:53 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:49:53 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:49:53 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:49:53 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:49:53 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:49:53 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:49:53 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:49:53 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:49:53 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:49:53 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:49:53 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:49:54 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:49:54 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:50:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:50:13 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:50:13 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:13 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:50:13 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:13 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:50:13 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:50:13 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:50:13 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:50:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:50:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:50:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:50:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:50:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:50:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:50:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 01:50:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 01:50:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 01:50:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. found." 2021-12-14 01:50:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 01:50:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] was clicked" 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection']", 'Base')" 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection'] found." 2021-12-14 01:50:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection'] found." 2021-12-14 01:50:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection']", 'Base')" 2021-12-14 01:50:13 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection']" 2021-12-14 01:50:14 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Detection'] was clicked" 2021-12-14 01:50:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:50:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:14 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:50:14 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:14 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:50:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:50:14 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:50:14 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:14 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:50:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:50:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:16 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:50:16 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:16 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:50:16 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:50:16 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:50:16 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:50:16 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:50:16 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:16 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:50:16 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:50:16 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:50:16 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:50:16 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:50:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:50:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:50:16 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:16 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:50:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:50:16 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:50:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:50:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:50:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:50:17 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:17 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:50:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:50:17 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:50:17 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:50:17 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:50:17 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:17 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:50:17 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:50:17 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:50:17 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:50:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:50:17 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:50:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:50:37 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:50:37 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:37 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:50:37 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:37 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:50:37 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:50:37 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:50:37 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:50:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:50:37 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:50:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:50:38 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:38 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:50:38 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:38 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:50:38 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:50:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:50:38 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:50:38 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 01:50:38 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:38 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 01:50:38 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 01:50:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. found." 2021-12-14 01:50:38 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 01:50:38 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] was clicked" 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity']", 'Base')" 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity'] found." 2021-12-14 01:50:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity'] found." 2021-12-14 01:50:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity']", 'Base')" 2021-12-14 01:50:38 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity']" 2021-12-14 01:50:39 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Water leak - Quantity'] was clicked" 2021-12-14 01:50:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:50:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:39 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:50:39 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:39 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:50:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:50:39 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:50:39 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:39 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:50:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:50:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:41 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:50:41 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:41 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:50:41 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:50:41 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:50:41 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:50:41 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:50:41 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:41 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:50:41 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:50:41 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:50:41 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:50:41 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:50:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:50:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:50:41 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:41 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:50:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:50:41 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:50:41 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:41 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:50:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:50:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:50:42 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:42 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:50:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:50:42 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:50:42 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:50:42 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:50:42 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:50:42 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:50:42 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:50:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:50:42 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:50:42 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:50:43 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:50:43 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:51:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:51:02 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:51:02 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:02 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:51:02 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:02 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:51:02 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:51:02 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:51:02 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:51:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:51:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:51:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:51:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:51:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:51:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:51:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:51:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:51:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:51:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:51:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:51:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 01:51:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 01:51:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 01:51:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. found." 2021-12-14 01:51:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 01:51:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] was clicked" 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection']", 'Base')" 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection'] found." 2021-12-14 01:51:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection'] found." 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection']", 'Base')" 2021-12-14 01:51:03 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection']" 2021-12-14 01:51:03 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Detection'] was clicked" 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:51:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:51:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:51:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:51:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:51:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:51:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:51:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:51:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:51:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:51:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:51:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:51:06 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:06 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:51:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:51:06 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:51:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:51:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:51:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:51:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:51:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:51:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:51:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:51:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:51:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:51:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:51:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:51:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:51:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:51:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:51:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:51:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:51:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:51:06 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:51:06 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:51:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:51:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:51:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:51:29 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:51:29 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:29 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:51:29 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:29 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:51:29 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:51:29 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:51:29 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:51:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:51:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:51:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:51:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:51:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:51:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:51:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 01:51:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] found." 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']", 'Expandable')" 2021-12-14 01:51:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 01:51:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/.. found." 2021-12-14 01:51:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']" 2021-12-14 01:51:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak'] was clicked" 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity']", 'Base')" 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity'] found." 2021-12-14 01:51:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity'] found." 2021-12-14 01:51:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity']", 'Base')" 2021-12-14 01:51:30 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity']" 2021-12-14 01:51:30 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Leak']/../..//*[contains(@class,'depth2')]//*[text()='Air leak - Quantity'] was clicked" 2021-12-14 01:51:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:51:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:51:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:51:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:51:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:51:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:51:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:51:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:51:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:51:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:51:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:51:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:51:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:51:32 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:32 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:51:32 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:51:32 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:51:32 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:51:32 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:51:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:51:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:51:32 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:32 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:51:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:51:32 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:51:32 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:32 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:51:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:51:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:51:33 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:33 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:51:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:51:33 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:51:33 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:51:33 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:51:33 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:33 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:51:33 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:51:33 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:51:33 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:51:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:51:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:51:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:51:55 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:51:55 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:55 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:51:55 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:55 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:51:55 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:51:55 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:51:55 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:51:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:51:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:51:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:51:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:51:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:51:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:51:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:51:55 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:55 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:51:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:51:55 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:51:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:51:55 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:51:55 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:51:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']", 'Expandable')" 2021-12-14 01:51:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] found." 2021-12-14 01:51:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] found." 2021-12-14 01:51:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']", 'Expandable')" 2021-12-14 01:51:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']" 2021-12-14 01:51:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/.. found." 2021-12-14 01:51:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']" 2021-12-14 01:51:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] was clicked" 2021-12-14 01:51:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV']", 'Base')" 2021-12-14 01:51:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV'] found." 2021-12-14 01:51:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV'] found." 2021-12-14 01:51:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV']", 'Base')" 2021-12-14 01:51:56 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV']" 2021-12-14 01:51:56 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='UV'] was clicked" 2021-12-14 01:51:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:51:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:51:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:51:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:51:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:51:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:51:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:51:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:58 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:51:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:58 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:51:58 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:51:58 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:51:58 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:51:58 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:51:58 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:58 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:51:58 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:51:58 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:51:58 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:51:58 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:51:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:51:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:51:58 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:58 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:51:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:51:58 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:51:58 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:58 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:51:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:51:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:51:58 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:58 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:51:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:51:58 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:51:58 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:51:58 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:51:58 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:51:58 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:51:58 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:51:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:51:58 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:51:58 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:51:59 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:51:59 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:52:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:52:19 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:52:19 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:19 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:52:19 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:19 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:52:19 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:52:19 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:52:19 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:52:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:52:19 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:19 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:52:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:52:19 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:52:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:52:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:52:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:52:19 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:19 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:52:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:52:19 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:52:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:52:19 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:52:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:52:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']", 'Expandable')" 2021-12-14 01:52:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] found." 2021-12-14 01:52:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] found." 2021-12-14 01:52:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']", 'Expandable')" 2021-12-14 01:52:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']" 2021-12-14 01:52:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/.. found." 2021-12-14 01:52:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']" 2021-12-14 01:52:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light'] was clicked" 2021-12-14 01:52:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity']", 'Base')" 2021-12-14 01:52:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity'] found." 2021-12-14 01:52:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity'] found." 2021-12-14 01:52:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity']", 'Base')" 2021-12-14 01:52:20 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity']" 2021-12-14 01:52:20 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Light']/../..//*[contains(@class,'depth2')]//*[text()='Luminosity Intensity'] was clicked" 2021-12-14 01:52:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:52:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:52:20 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:52:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:52:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:52:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:52:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:52:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:22 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:52:22 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:22 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:52:22 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:52:22 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:52:23 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:52:23 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:52:23 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:23 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:52:23 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:52:23 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:52:23 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:52:23 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:52:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:52:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:52:23 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:23 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:52:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:52:23 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:52:23 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:23 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:52:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:52:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:52:23 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:23 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:52:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:52:23 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:52:23 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:52:23 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:52:23 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:23 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:52:23 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:52:23 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:52:23 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:52:24 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:52:24 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:52:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:52:44 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:52:44 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:45 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:52:45 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:45 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:52:45 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:52:45 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:52:45 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:52:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:52:45 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:45 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:52:45 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:45 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:52:45 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:52:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:52:45 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:52:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']", 'Expandable')" 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound'] found." 2021-12-14 01:52:45 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:45 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound'] found." 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']", 'Expandable')" 2021-12-14 01:52:45 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']" 2021-12-14 01:52:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/.. found." 2021-12-14 01:52:45 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']" 2021-12-14 01:52:45 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound'] was clicked" 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity']", 'Base')" 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity'] found." 2021-12-14 01:52:45 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:45 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity'] found." 2021-12-14 01:52:45 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity']", 'Base')" 2021-12-14 01:52:45 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity']" 2021-12-14 01:52:46 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Sound']/../..//*[contains(@class,'depth2')]//*[text()='Sound Intensity'] was clicked" 2021-12-14 01:52:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:52:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:46 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:52:46 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:46 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:52:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:52:46 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:52:46 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:46 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:52:48 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:52:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:48 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:52:48 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:48 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:52:48 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:52:48 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:52:48 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:52:48 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:52:48 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:48 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:52:48 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:52:48 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:52:48 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:52:48 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:52:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:52:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:48 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:52:48 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:48 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:52:48 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:52:48 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:52:48 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:48 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:52:48 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:52:48 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:52:49 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:49 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:52:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:52:49 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:52:49 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:52:49 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:52:49 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:52:49 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:52:49 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:52:49 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:52:49 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:52:49 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:52:50 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:52:50 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:53:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:53:09 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:53:09 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:09 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:53:09 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:09 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:53:09 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:53:09 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:53:10 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:53:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:53:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:53:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:53:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:53:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:53:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:53:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']", 'Expandable')" 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] found." 2021-12-14 01:53:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] found." 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']", 'Expandable')" 2021-12-14 01:53:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']" 2021-12-14 01:53:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/.. found." 2021-12-14 01:53:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']" 2021-12-14 01:53:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] was clicked" 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted']", 'Base')" 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted'] found." 2021-12-14 01:53:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted'] found." 2021-12-14 01:53:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted']", 'Base')" 2021-12-14 01:53:10 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted']" 2021-12-14 01:53:11 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='People Counted'] was clicked" 2021-12-14 01:53:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:53:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:53:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:53:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:53:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:53:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:53:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:53:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:13 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:53:13 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:13 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:53:13 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:53:13 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:53:13 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:53:13 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:53:13 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:13 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:53:13 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:53:13 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:53:13 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:53:13 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:53:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:53:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:53:13 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:13 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:53:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:53:13 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:53:13 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:13 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:53:13 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:53:13 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:13 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:53:13 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:13 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:53:13 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:53:13 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:53:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:53:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:53:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:14 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:53:14 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:53:14 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:53:14 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:53:14 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:53:14 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:53:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:53:37 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:53:37 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:37 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:53:37 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:37 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:53:37 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:53:37 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:53:37 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:53:37 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:53:37 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:37 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:53:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:53:37 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:53:37 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:37 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:53:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:53:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:53:37 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:37 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:53:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:53:37 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:53:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:53:37 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:53:37 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:53:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']", 'Expandable')" 2021-12-14 01:53:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:37 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] found." 2021-12-14 01:53:37 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:37 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] found." 2021-12-14 01:53:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']", 'Expandable')" 2021-12-14 01:53:37 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']" 2021-12-14 01:53:37 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:37 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/.. found." 2021-12-14 01:53:37 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']" 2021-12-14 01:53:38 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] was clicked" 2021-12-14 01:53:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status']", 'Base')" 2021-12-14 01:53:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:38 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status'] found." 2021-12-14 01:53:38 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:38 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status'] found." 2021-12-14 01:53:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status']", 'Base')" 2021-12-14 01:53:38 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status']" 2021-12-14 01:53:38 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Occupancy Status'] was clicked" 2021-12-14 01:53:38 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:53:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:38 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:53:38 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:38 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:53:38 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:53:38 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:53:38 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:38 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:53:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:53:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:40 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:53:40 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:40 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:53:40 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:53:40 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:53:40 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:53:40 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:53:40 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:40 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:53:40 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:53:40 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:53:40 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:53:41 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:53:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:53:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:53:41 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:41 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:53:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:53:41 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:53:41 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:41 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:53:41 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:53:41 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:41 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:53:41 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:41 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:53:41 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:53:41 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:53:41 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:53:41 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:53:41 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:53:41 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:53:41 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:53:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:53:41 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:53:41 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:53:41 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:53:41 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:54:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:54:02 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:54:02 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:02 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:54:02 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:02 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:54:02 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:54:02 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:54:02 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:54:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:54:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:54:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:54:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:54:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:54:02 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:54:02 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']", 'Expandable')" 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] found." 2021-12-14 01:54:02 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:02 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] found." 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']", 'Expandable')" 2021-12-14 01:54:02 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']" 2021-12-14 01:54:02 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:02 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/.. found." 2021-12-14 01:54:02 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']" 2021-12-14 01:54:02 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy'] was clicked" 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection']", 'Base')" 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:02 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection'] found." 2021-12-14 01:54:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection'] found." 2021-12-14 01:54:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection']", 'Base')" 2021-12-14 01:54:03 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection']" 2021-12-14 01:54:03 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Occupancy']/../..//*[contains(@class,'depth2')]//*[text()='Presence Detection'] was clicked" 2021-12-14 01:54:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:54:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:54:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:54:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:54:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:54:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:54:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:54:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:05 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:54:05 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:05 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:54:05 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:54:05 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:54:05 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:54:05 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:54:05 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:05 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:54:05 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:54:05 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:54:05 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:54:05 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:54:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:54:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:54:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:54:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:54:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:54:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:54:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:54:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:54:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:54:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:54:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:54:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:54:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:54:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:54:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:06 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:54:06 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:54:06 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:54:06 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:54:06 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:54:28 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:54:28 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:54:28 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:28 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:54:28 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:28 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:54:28 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:54:28 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:54:28 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:54:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:54:28 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:28 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:54:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:54:28 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:54:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:54:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:54:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:28 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:54:28 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:28 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:54:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:54:28 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:54:28 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:54:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:54:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:54:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 01:54:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 01:54:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 01:54:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 01:54:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 01:54:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. found." 2021-12-14 01:54:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 01:54:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] was clicked" 2021-12-14 01:54:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure']", 'Base')" 2021-12-14 01:54:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure'] found." 2021-12-14 01:54:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure'] found." 2021-12-14 01:54:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure']", 'Base')" 2021-12-14 01:54:29 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure']" 2021-12-14 01:54:29 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Air Flow Pressure'] was clicked" 2021-12-14 01:54:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:54:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:29 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:54:29 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:29 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:54:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:54:29 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:54:29 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:29 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:54:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:54:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:54:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:54:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:54:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:54:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:54:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:54:32 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:32 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:54:32 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:54:32 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:54:32 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:54:32 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:54:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:54:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:54:32 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:32 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:54:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:54:32 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:54:32 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:32 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:54:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:54:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:54:32 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:32 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:54:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:54:32 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:54:32 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:54:32 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:54:32 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:32 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:54:32 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:32 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:54:32 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:54:32 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:54:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:54:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:54:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:54:55 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:54:55 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:55 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:54:55 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:55 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:54:55 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:54:55 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:54:55 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:54:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:54:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:54:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:54:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:54:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:54:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:54:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:54:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:54:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:54:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 01:54:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 01:54:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 01:54:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. found." 2021-12-14 01:54:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 01:54:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] was clicked" 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure']", 'Base')" 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure'] found." 2021-12-14 01:54:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure'] found." 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure']", 'Base')" 2021-12-14 01:54:56 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure']" 2021-12-14 01:54:56 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Equipment Pressure'] was clicked" 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:54:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:54:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:54:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:54:57 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:57 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:54:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:54:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:59 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:54:59 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:59 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:54:59 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:54:59 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:54:59 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:54:59 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:54:59 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:59 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:54:59 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:54:59 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:54:59 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:54:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:54:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:54:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:54:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:54:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:54:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:54:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:54:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:54:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:54:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:54:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:54:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:54:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:54:59 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:54:59 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:54:59 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:54:59 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:54:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:54:59 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:54:59 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:55:00 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:55:00 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:55:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:55:21 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:55:21 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:21 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:55:21 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:22 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:55:22 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:55:22 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:55:22 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:55:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:55:22 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:22 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:55:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:55:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:55:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:55:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:55:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 01:55:22 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:22 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 01:55:22 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 01:55:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. found." 2021-12-14 01:55:22 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 01:55:22 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] was clicked" 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure']", 'Base')" 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure'] found." 2021-12-14 01:55:22 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:22 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure'] found." 2021-12-14 01:55:22 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure']", 'Base')" 2021-12-14 01:55:22 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure']" 2021-12-14 01:55:23 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Room Pressure'] was clicked" 2021-12-14 01:55:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:55:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:55:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:55:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:55:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:55:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:55:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:55:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:55:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:55:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:55:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:55:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:55:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:55:25 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:25 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:55:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:55:25 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:55:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:55:25 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:55:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:55:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:55:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:55:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:55:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:55:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:25 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:55:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:55:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:55:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:55:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:55:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:55:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:55:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:55:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:55:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:55:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:55:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:55:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:55:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:55:47 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:55:47 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:55:47 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:47 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:55:47 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:47 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:55:47 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:55:47 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:55:47 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:55:47 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:55:47 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:47 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:55:47 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:55:47 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:55:47 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:55:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:55:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:55:47 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:47 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:55:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:55:47 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:55:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:55:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:55:47 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:55:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 01:55:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 01:55:47 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:47 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 01:55:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 01:55:47 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 01:55:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. found." 2021-12-14 01:55:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 01:55:48 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] was clicked" 2021-12-14 01:55:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure']", 'Base')" 2021-12-14 01:55:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:48 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure'] found." 2021-12-14 01:55:48 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:48 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure'] found." 2021-12-14 01:55:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure']", 'Base')" 2021-12-14 01:55:48 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure']" 2021-12-14 01:55:48 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Water Flow Pressure'] was clicked" 2021-12-14 01:55:48 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:55:48 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:48 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:55:48 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:48 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:55:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:55:48 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:55:48 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:48 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:55:50 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:55:50 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:50 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:55:50 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:50 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:55:50 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:55:50 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:55:50 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:55:50 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:55:50 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:50 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:55:50 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:55:51 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:55:51 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:55:51 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:55:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:55:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:55:51 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:51 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:55:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:55:51 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:55:51 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:51 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:55:51 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:55:51 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:51 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:55:51 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:51 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:55:51 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:55:51 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:55:51 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:55:51 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:55:51 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:55:51 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:55:51 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:55:51 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:55:51 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:55:51 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:55:51 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:55:51 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:56:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:56:13 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:56:13 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:13 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:56:13 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:13 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:56:13 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:56:13 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:56:13 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:56:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:56:13 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:13 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:56:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:56:13 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:56:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:56:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:56:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:56:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:56:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:56:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:56:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:56:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:56:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:56:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 01:56:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 01:56:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:14 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] found." 2021-12-14 01:56:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']", 'Expandable')" 2021-12-14 01:56:14 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 01:56:14 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:14 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/.. found." 2021-12-14 01:56:14 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']" 2021-12-14 01:56:14 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure'] was clicked" 2021-12-14 01:56:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure']", 'Base')" 2021-12-14 01:56:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:14 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure'] found." 2021-12-14 01:56:14 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:14 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure'] found." 2021-12-14 01:56:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure']", 'Base')" 2021-12-14 01:56:14 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure']" 2021-12-14 01:56:14 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Pressure']/../..//*[contains(@class,'depth2')]//*[text()='Duct Pressure'] was clicked" 2021-12-14 01:56:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:56:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:14 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:56:14 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:14 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:56:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:56:14 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:56:14 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:14 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:56:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:56:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:16 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:56:16 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:16 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:56:16 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:56:16 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:56:16 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:56:16 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:56:16 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:16 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:56:16 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:56:17 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:56:17 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:56:17 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:56:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:56:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:56:17 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:17 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:56:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:56:17 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:56:17 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:17 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:56:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:56:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:56:17 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:17 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:56:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:56:17 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:56:17 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:56:17 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:56:17 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:17 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:56:17 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:56:17 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:56:17 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:56:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:56:17 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:56:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:56:39 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:56:39 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:39 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:56:39 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:39 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:56:39 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:56:39 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:56:39 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:56:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:56:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:56:39 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:39 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:56:39 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:56:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:56:39 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:56:39 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']", 'Expandable')" 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] found." 2021-12-14 01:56:39 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:39 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] found." 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']", 'Expandable')" 2021-12-14 01:56:39 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']" 2021-12-14 01:56:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/.. found." 2021-12-14 01:56:39 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']" 2021-12-14 01:56:39 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] was clicked" 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind']", 'Base')" 2021-12-14 01:56:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind'] found." 2021-12-14 01:56:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind'] found." 2021-12-14 01:56:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind']", 'Base')" 2021-12-14 01:56:40 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind']" 2021-12-14 01:56:40 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Wind'] was clicked" 2021-12-14 01:56:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:56:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:40 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:56:40 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:56:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:56:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:56:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:56:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:56:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:42 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:56:42 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:42 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:56:42 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:56:42 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:56:42 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:56:42 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:56:42 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:42 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:56:42 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:56:42 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:56:42 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:56:42 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:56:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:56:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:56:42 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:42 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:56:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:56:42 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:56:42 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:42 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:56:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:56:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:56:42 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:42 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:56:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:56:42 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:56:42 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:56:42 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:56:42 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:56:42 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:56:42 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:56:42 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:56:42 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:56:42 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:56:43 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:56:43 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:57:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:57:05 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:57:05 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:05 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:57:05 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:05 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:57:05 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:57:05 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:57:05 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:57:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:57:05 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:05 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:57:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:57:05 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:57:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:57:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:57:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:57:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure'] found." 2021-12-14 01:57:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']", 'Expandable')" 2021-12-14 01:57:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:57:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/.. found." 2021-12-14 01:57:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']" 2021-12-14 01:57:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure'] was clicked" 2021-12-14 01:57:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']", 'Expandable')" 2021-12-14 01:57:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] found." 2021-12-14 01:57:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] found." 2021-12-14 01:57:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']", 'Expandable')" 2021-12-14 01:57:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']" 2021-12-14 01:57:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/.. found." 2021-12-14 01:57:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']" 2021-12-14 01:57:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather'] was clicked" 2021-12-14 01:57:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain']", 'Base')" 2021-12-14 01:57:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain'] found." 2021-12-14 01:57:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain'] found." 2021-12-14 01:57:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain']", 'Base')" 2021-12-14 01:57:06 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain']" 2021-12-14 01:57:06 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Measure']/../..//*[text()='Weather']/../..//*[contains(@class,'depth2')]//*[text()='Rain'] was clicked" 2021-12-14 01:57:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:57:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:57:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:07 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:57:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:57:07 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:57:07 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:57:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:57:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:08 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:57:08 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:08 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:57:08 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:57:08 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:57:08 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:57:08 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:57:08 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:08 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:57:08 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:57:09 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:57:09 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:57:09 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:57:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:57:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:57:09 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:57:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:57:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:57:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:57:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:57:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:57:09 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:09 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:57:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:57:09 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:57:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:57:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:57:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:57:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:57:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:57:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:57:09 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:57:09 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:57:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:57:31 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:57:31 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:31 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:57:31 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:31 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:57:31 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:57:31 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:57:31 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:57:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:57:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:57:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:57:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:57:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:57:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 01:57:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 01:57:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 01:57:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 01:57:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 01:57:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 01:57:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 01:57:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 01:57:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 01:57:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 01:57:32 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:32 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 01:57:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 01:57:32 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 01:57:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. found." 2021-12-14 01:57:32 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 01:57:32 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] was clicked" 2021-12-14 01:57:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity']", 'Base')" 2021-12-14 01:57:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity'] found." 2021-12-14 01:57:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity'] found." 2021-12-14 01:57:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity']", 'Base')" 2021-12-14 01:57:32 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity']" 2021-12-14 01:57:32 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Electricity'] was clicked" 2021-12-14 01:57:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:57:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:57:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:57:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:57:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:57:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:57:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:57:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:57:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:34 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:57:34 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:57:34 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:57:35 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:57:35 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:57:35 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:35 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:57:35 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:57:35 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:57:35 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:57:35 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:57:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:57:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:57:35 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:35 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:57:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:57:35 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:57:35 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:35 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:57:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:57:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:57:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:57:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:57:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:57:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:57:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:57:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:57:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:57:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:57:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:57:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:57:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:57:35 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:57:35 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:58:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:58:00 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:58:00 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:00 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:58:00 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:00 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:58:00 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:58:00 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:58:00 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:58:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:58:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 01:58:00 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:00 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 01:58:00 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 01:58:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 01:58:00 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 01:58:00 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 01:58:00 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:00 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 01:58:00 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 01:58:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. found." 2021-12-14 01:58:00 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 01:58:00 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] was clicked" 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas']", 'Base')" 2021-12-14 01:58:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas'] found." 2021-12-14 01:58:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas'] found." 2021-12-14 01:58:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas']", 'Base')" 2021-12-14 01:58:01 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas']" 2021-12-14 01:58:01 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Gas'] was clicked" 2021-12-14 01:58:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:58:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:01 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:58:01 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:58:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:58:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:58:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:58:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:58:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:03 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:58:03 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:03 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:58:03 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:58:03 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:58:03 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:58:03 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:58:03 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:03 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:58:03 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:58:03 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:58:03 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:58:03 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:58:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:58:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:58:03 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:03 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:58:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:58:03 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:58:03 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:03 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:58:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:58:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:58:03 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:04 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:58:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:58:04 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:58:04 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:58:04 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:58:04 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:04 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:58:04 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:58:04 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:58:04 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:58:04 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:58:04 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:58:28 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:58:28 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:58:28 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:28 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:58:28 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:29 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:58:29 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:58:29 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:58:29 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:58:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:58:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 01:58:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 01:58:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 01:58:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 01:58:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 01:58:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 01:58:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 01:58:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 01:58:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. found." 2021-12-14 01:58:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 01:58:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] was clicked" 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water']", 'Base')" 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water'] found." 2021-12-14 01:58:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water'] found." 2021-12-14 01:58:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water']", 'Base')" 2021-12-14 01:58:29 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water']" 2021-12-14 01:58:30 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Water'] was clicked" 2021-12-14 01:58:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:58:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:58:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:58:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:58:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:58:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:58:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:58:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:58:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:58:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:58:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:58:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:58:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:58:32 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:32 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:58:32 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:58:32 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:58:32 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:58:32 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:58:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:58:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:58:32 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:32 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:58:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:58:32 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:58:32 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:32 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:58:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:58:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:58:32 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:32 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:58:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:58:32 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:58:32 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:58:32 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:58:32 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:33 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:58:33 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:58:33 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:58:33 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:58:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:58:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:58:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:58:55 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:58:55 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:55 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:58:55 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:55 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:58:55 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:58:55 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:58:55 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:58:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:58:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:58:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:58:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:58:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:58:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 01:58:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:55 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 01:58:55 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:55 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 01:58:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 01:58:55 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 01:58:55 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:55 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 01:58:55 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 01:58:55 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 01:58:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 01:58:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 01:58:56 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:56 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] found." 2021-12-14 01:58:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']", 'Expandable')" 2021-12-14 01:58:56 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 01:58:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/.. found." 2021-12-14 01:58:56 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']" 2021-12-14 01:58:56 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption'] was clicked" 2021-12-14 01:58:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam']", 'Base')" 2021-12-14 01:58:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:56 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam'] found." 2021-12-14 01:58:56 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:56 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam'] found." 2021-12-14 01:58:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam']", 'Base')" 2021-12-14 01:58:56 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam']" 2021-12-14 01:58:56 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Consumption']/../..//*[contains(@class,'depth2')]//*[text()='Steam'] was clicked" 2021-12-14 01:58:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:58:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:58:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:58:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:58:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:58:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:58:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:58:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:58 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:58:58 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:58 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:58:58 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:58:58 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:58:58 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:58:58 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:58:58 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:58 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 01:58:58 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 01:58:58 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 01:58:58 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:58:59 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:58:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:58:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:58:59 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:59 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:58:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:58:59 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:58:59 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:59 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:58:59 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:58:59 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:59 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:58:59 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:59 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:58:59 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:58:59 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:58:59 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:58:59 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:58:59 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:58:59 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:58:59 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:58:59 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:58:59 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:58:59 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:58:59 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:58:59 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:59:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:59:22 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:59:22 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:23 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:59:23 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:23 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:59:23 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:59:23 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:59:23 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:59:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:59:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 01:59:23 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:23 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 01:59:23 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 01:59:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 01:59:23 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 01:59:23 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']", 'Expandable')" 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] found." 2021-12-14 01:59:23 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:23 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] found." 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']", 'Expandable')" 2021-12-14 01:59:23 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']" 2021-12-14 01:59:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/.. found." 2021-12-14 01:59:23 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']" 2021-12-14 01:59:23 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] was clicked" 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days']", 'Base')" 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days'] found." 2021-12-14 01:59:23 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:23 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days'] found." 2021-12-14 01:59:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days']", 'Base')" 2021-12-14 01:59:23 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days']" 2021-12-14 01:59:24 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Degree Days'] was clicked" 2021-12-14 01:59:24 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:59:24 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:24 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:59:24 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:24 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:59:24 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:59:24 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:59:24 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:24 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:59:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:59:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:59:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:59:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:59:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:59:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:59:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:59:26 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:26 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:59:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:59:26 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:59:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:59:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:59:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:59:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:59:26 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:26 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:59:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:59:26 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:59:26 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:59:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:59:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:59:27 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:27 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:59:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:59:27 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:59:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:59:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:59:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:59:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:59:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:59:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:59:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:59:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 01:59:52 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 01:59:52 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:59:52 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:52 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:59:52 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:52 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 01:59:52 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 01:59:52 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 01:59:52 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:59:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 01:59:52 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:52 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 01:59:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 01:59:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 01:59:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 01:59:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 01:59:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']", 'Expandable')" 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] found." 2021-12-14 01:59:52 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:52 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] found." 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']", 'Expandable')" 2021-12-14 01:59:52 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']" 2021-12-14 01:59:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:52 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/.. found." 2021-12-14 01:59:52 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']" 2021-12-14 01:59:52 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] was clicked" 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days']", 'Base')" 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:52 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days'] found." 2021-12-14 01:59:52 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:53 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days'] found." 2021-12-14 01:59:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days']", 'Base')" 2021-12-14 01:59:53 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days']" 2021-12-14 01:59:53 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Heating Degree Days'] was clicked" 2021-12-14 01:59:53 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 01:59:53 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:53 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 01:59:53 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:53 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 01:59:53 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 01:59:53 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 01:59:53 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:53 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 01:59:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:59:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:55 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 01:59:55 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:55 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 01:59:55 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 01:59:55 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 01:59:55 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 01:59:55 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 01:59:55 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:55 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 01:59:55 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 01:59:55 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 01:59:55 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:59:55 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 01:59:55 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:59:55 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:55 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:59:55 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:55 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 01:59:55 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 01:59:55 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 01:59:55 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:55 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 01:59:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:59:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:59:56 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:56 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 01:59:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 01:59:56 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 01:59:56 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 01:59:56 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:59:56 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 01:59:56 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:59:56 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 01:59:56 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 01:59:56 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 01:59:56 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 01:59:56 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 01:59:56 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:00:18 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:00:18 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:00:18 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:18 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:00:19 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:19 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:00:19 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:00:19 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:00:19 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:00:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:00:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:00:19 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:19 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:00:19 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:00:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 02:00:19 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:00:19 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']", 'Expandable')" 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] found." 2021-12-14 02:00:19 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:19 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] found." 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']", 'Expandable')" 2021-12-14 02:00:19 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']" 2021-12-14 02:00:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/.. found." 2021-12-14 02:00:19 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']" 2021-12-14 02:00:19 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days'] was clicked" 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days']", 'Base')" 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days'] found." 2021-12-14 02:00:19 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:19 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days'] found." 2021-12-14 02:00:19 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days']", 'Base')" 2021-12-14 02:00:19 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days']" 2021-12-14 02:00:20 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Degree Days']/../..//*[contains(@class,'depth2')]//*[text()='Cooling Degree Days'] was clicked" 2021-12-14 02:00:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:00:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:20 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:00:20 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:20 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:00:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:00:20 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:00:20 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:20 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:00:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:00:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:22 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:00:22 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:22 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:00:22 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:00:22 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:00:22 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:00:22 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:00:22 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:22 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:00:22 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:00:22 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:00:22 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:00:22 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:00:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:00:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:00:22 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:22 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:00:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:00:22 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:00:22 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:22 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:00:22 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:00:22 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:22 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:00:22 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:22 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:00:22 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:00:22 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:00:23 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:00:23 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:00:23 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:23 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:00:23 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:00:23 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:00:23 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:00:23 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:00:23 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:00:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:00:45 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:00:45 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:45 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:00:45 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:45 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:00:45 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:00:45 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:00:46 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:00:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:00:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:46 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:00:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:00:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:00:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 02:00:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:00:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:00:46 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:46 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:00:46 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:00:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 02:00:46 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:00:46 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy']", 'Base')" 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy'] found." 2021-12-14 02:00:46 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:46 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy'] found." 2021-12-14 02:00:46 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy']", 'Base')" 2021-12-14 02:00:46 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy']" 2021-12-14 02:00:47 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Bioenergy'] was clicked" 2021-12-14 02:00:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:00:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:47 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:00:47 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:47 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:00:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:00:47 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:00:47 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:47 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:00:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:00:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:49 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:00:49 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:49 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:00:49 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:00:49 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:00:49 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:00:49 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:00:49 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:49 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:00:49 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:00:49 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:00:49 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:00:49 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:00:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:00:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:00:49 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:49 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:00:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:00:49 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:00:49 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:49 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:00:49 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:00:49 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:49 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:00:49 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:49 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:00:49 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:00:49 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:00:49 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:00:49 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:00:49 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:00:49 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:00:49 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:00:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:00:50 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:00:50 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:00:50 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:00:50 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:01:13 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:01:13 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:01:13 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:13 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:01:13 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:13 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:01:13 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:01:13 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:01:13 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:01:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:01:13 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:13 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:01:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:01:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:01:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 02:01:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:01:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:01:13 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:13 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:01:13 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:01:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 02:01:13 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:01:13 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating']", 'Base')" 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating'] found." 2021-12-14 02:01:13 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:13 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating'] found." 2021-12-14 02:01:13 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating']", 'Base')" 2021-12-14 02:01:13 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating']" 2021-12-14 02:01:14 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='District Heating'] was clicked" 2021-12-14 02:01:14 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:01:14 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:14 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:01:14 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:14 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:01:14 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:01:14 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:01:14 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:14 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:01:16 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:01:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:16 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:01:16 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:16 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:01:16 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:01:16 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:01:16 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:01:16 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:01:16 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:16 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:01:16 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:01:16 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:01:16 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:01:16 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:01:16 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:01:16 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:16 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:01:16 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:16 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:01:16 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:01:16 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:01:16 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:16 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:01:17 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:01:17 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:17 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:01:17 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:17 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:01:17 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:01:17 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:01:17 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:01:17 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:01:17 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:17 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:01:17 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:17 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:01:17 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:01:17 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:01:17 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:01:17 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:01:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:01:40 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:01:40 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:40 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:01:40 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:40 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:01:40 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:01:40 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:01:40 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:01:40 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:01:40 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:40 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:01:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:01:40 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:01:40 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:40 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:01:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:01:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:01:40 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:40 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:01:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:01:40 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:01:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 02:01:40 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:01:40 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 02:01:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:01:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:01:41 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:41 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:01:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:01:41 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:01:41 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:41 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 02:01:41 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:01:41 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 02:01:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal']", 'Base')" 2021-12-14 02:01:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:41 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal'] found." 2021-12-14 02:01:41 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:41 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal'] found." 2021-12-14 02:01:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal']", 'Base')" 2021-12-14 02:01:41 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal']" 2021-12-14 02:01:41 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Geothermal'] was clicked" 2021-12-14 02:01:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:01:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:41 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:01:41 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:41 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:01:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:01:41 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:01:41 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:41 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:01:43 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:01:43 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:44 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:01:44 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:44 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:01:44 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:01:44 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:01:44 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:01:44 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:01:44 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:44 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:01:44 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:01:44 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:01:44 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:01:44 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:01:44 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:01:44 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:44 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:01:44 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:44 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:01:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:01:44 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:01:44 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:44 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:01:44 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:01:44 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:44 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:01:44 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:44 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:01:44 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:01:44 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:01:44 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:01:44 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:01:44 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:01:44 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:01:44 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:01:44 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:01:44 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:01:44 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:01:45 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:01:45 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:02:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:02:08 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:02:08 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:08 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:02:08 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:08 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:02:08 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:02:08 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:02:08 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:02:08 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:08 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:02:08 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:08 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:02:08 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:08 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:02:08 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:02:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 02:02:08 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:02:08 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:02:08 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:08 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:02:08 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:02:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 02:02:08 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:02:08 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic']", 'Base')" 2021-12-14 02:02:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:09 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic'] found." 2021-12-14 02:02:09 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:09 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic'] found." 2021-12-14 02:02:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic']", 'Base')" 2021-12-14 02:02:09 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic']" 2021-12-14 02:02:09 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Photovoltaic'] was clicked" 2021-12-14 02:02:09 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:02:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:09 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:02:09 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:09 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:02:09 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:02:09 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:02:09 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:09 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:02:11 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:02:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:11 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:02:11 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:11 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:02:11 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:02:11 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:02:11 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:02:11 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:02:11 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:11 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:02:11 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:02:12 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:02:12 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:02:12 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:02:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:02:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:02:12 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:12 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:02:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:02:12 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:02:12 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:12 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:02:12 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:02:12 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:12 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:02:12 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:12 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:02:12 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:02:12 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:02:12 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:02:12 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:02:12 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:12 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:02:12 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:12 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:02:12 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:02:12 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:02:12 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:02:12 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:02:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:02:39 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:02:39 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:39 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:02:39 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:39 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:02:39 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:02:39 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:02:39 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:02:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:02:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:02:39 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:39 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:02:39 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:02:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 02:02:39 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:02:39 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:02:39 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:39 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:02:39 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:02:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 02:02:39 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:02:39 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil']", 'Base')" 2021-12-14 02:02:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil'] found." 2021-12-14 02:02:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil'] found." 2021-12-14 02:02:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil']", 'Base')" 2021-12-14 02:02:40 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil']" 2021-12-14 02:02:40 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Oil'] was clicked" 2021-12-14 02:02:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:02:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:40 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:02:40 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:02:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:02:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:02:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:02:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:02:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:42 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:02:42 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:42 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:02:42 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:02:42 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:02:42 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:02:42 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:02:42 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:42 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:02:42 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:02:42 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:02:42 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:02:42 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:02:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:02:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:02:42 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:42 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:02:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:02:42 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:02:42 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:42 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:02:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:02:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:02:42 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:42 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:02:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:02:42 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:02:43 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:02:43 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:02:43 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:02:43 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:02:43 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:02:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:02:43 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:02:43 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:02:43 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:02:43 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:03:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:03:07 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:03:07 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:07 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:03:07 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:07 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:03:07 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:03:07 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:03:07 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:03:07 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:07 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:03:07 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:07 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:03:07 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:07 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:03:07 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:03:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 02:03:07 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:03:07 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:03:07 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:07 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:03:07 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:03:07 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:07 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 02:03:07 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:03:07 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal']", 'Base')" 2021-12-14 02:03:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:08 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal'] found." 2021-12-14 02:03:08 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:08 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal'] found." 2021-12-14 02:03:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal']", 'Base')" 2021-12-14 02:03:08 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal']" 2021-12-14 02:03:08 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Solar Thermal'] was clicked" 2021-12-14 02:03:08 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:03:08 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:08 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:03:08 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:08 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:03:08 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:03:08 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:03:08 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:08 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:03:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:03:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:10 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:03:10 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:10 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:03:10 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:03:10 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:03:10 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:03:10 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:03:10 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:10 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:03:10 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:03:11 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:03:11 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:03:11 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:03:11 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:03:11 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:11 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:03:11 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:11 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:03:11 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:03:11 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:03:11 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:11 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:03:11 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:03:11 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:11 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:03:11 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:11 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:03:11 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:03:11 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:03:11 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:03:11 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:03:11 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:11 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:03:11 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:11 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:03:11 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:03:11 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:03:11 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:03:11 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:03:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:03:35 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:03:35 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:35 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:03:35 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:35 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:03:35 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:03:35 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:03:35 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:03:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:03:35 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:35 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:03:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:03:35 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:03:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:03:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:03:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:03:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering'] found." 2021-12-14 02:03:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']", 'Expandable')" 2021-12-14 02:03:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:03:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/.. found." 2021-12-14 02:03:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']" 2021-12-14 02:03:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering'] was clicked" 2021-12-14 02:03:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:03:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:03:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] found." 2021-12-14 02:03:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']", 'Expandable')" 2021-12-14 02:03:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:03:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/.. found." 2021-12-14 02:03:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']" 2021-12-14 02:03:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production'] was clicked" 2021-12-14 02:03:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill']", 'Base')" 2021-12-14 02:03:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill'] found." 2021-12-14 02:03:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill'] found." 2021-12-14 02:03:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill']", 'Base')" 2021-12-14 02:03:36 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill']" 2021-12-14 02:03:36 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Metering']/../..//*[text()='Production']/../..//*[contains(@class,'depth2')]//*[text()='Windmill'] was clicked" 2021-12-14 02:03:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:03:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:36 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:03:36 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:36 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:03:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:03:36 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:03:36 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:36 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:03:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:03:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:38 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:03:38 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:38 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:03:38 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:03:38 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:03:38 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:03:38 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:03:38 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:38 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:03:38 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:03:38 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:03:38 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:03:39 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:03:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:03:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:03:39 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:39 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:03:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:03:39 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:03:39 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:39 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:03:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:03:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:03:39 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:39 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:03:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:03:39 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:03:39 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:03:39 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:03:39 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:03:39 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:03:39 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:03:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:03:39 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:03:39 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:03:39 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:03:39 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:04:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:04:05 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:04:05 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:05 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:04:05 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:05 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:04:05 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:04:05 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:04:05 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:04:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:04:05 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:05 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:04:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:04:05 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:04:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:05 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:04:05 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:04:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:05 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:04:05 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:05 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:04:05 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:04:05 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:04:05 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:05 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:04:05 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:04:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:04:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency']", 'Base')" 2021-12-14 02:04:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency'] found." 2021-12-14 02:04:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency'] found." 2021-12-14 02:04:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency']", 'Base')" 2021-12-14 02:04:06 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency']" 2021-12-14 02:04:06 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Currency'] was clicked" 2021-12-14 02:04:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:04:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:04:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:04:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:04:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:04:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:06 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:04:07 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:04:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:07 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:04:07 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:07 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:04:07 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:04:07 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:04:07 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:04:07 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:04:07 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:08 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:04:08 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:04:08 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:04:08 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:04:08 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:04:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:04:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:04:08 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:08 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:04:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:04:08 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:04:08 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:08 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:04:08 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:04:08 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:08 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:04:08 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:08 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:04:08 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:04:08 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:04:08 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:04:08 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:04:08 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:08 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:04:08 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:04:08 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:04:08 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:04:09 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:04:09 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:04:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:04:33 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:04:33 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:33 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:04:33 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:33 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:04:33 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:04:33 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:04:33 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:04:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:04:33 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:33 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:04:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:04:33 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:04:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:04:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:04:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:04:33 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:33 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:04:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:04:33 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:04:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:04:33 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:04:33 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:04:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:04:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:33 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:04:33 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:33 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:04:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:04:33 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:04:33 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:33 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 02:04:33 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:04:34 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 02:04:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence']", 'Base')" 2021-12-14 02:04:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:34 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence'] found." 2021-12-14 02:04:34 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:34 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence'] found." 2021-12-14 02:04:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence']", 'Base')" 2021-12-14 02:04:34 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence']" 2021-12-14 02:04:34 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Device Presence'] was clicked" 2021-12-14 02:04:34 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:04:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:34 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:04:34 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:34 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:04:34 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:04:34 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:04:34 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:34 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:04:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:04:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:36 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:04:36 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:36 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:04:36 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:04:36 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:04:36 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:04:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:04:36 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:36 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:04:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:04:36 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:04:36 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:04:36 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:04:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:04:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:04:37 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:37 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:04:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:04:37 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:04:37 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:37 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:04:37 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:04:37 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:37 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:04:37 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:37 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:04:37 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:04:37 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:04:37 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:04:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:04:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:04:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:04:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:04:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:04:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:04:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:04:37 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:04:37 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:05:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:05:02 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:05:02 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:02 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:05:02 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:02 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:05:02 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:05:02 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:05:02 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:05:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:05:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:05:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:05:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:05:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:05:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:05:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:05:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:05:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:05:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:05:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:05:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:05:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:05:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:05:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:05:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:05:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:05:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:05:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 02:05:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:05:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 02:05:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address']", 'Base')" 2021-12-14 02:05:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address'] found." 2021-12-14 02:05:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address'] found." 2021-12-14 02:05:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address']", 'Base')" 2021-12-14 02:05:03 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address']" 2021-12-14 02:05:04 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address'] was clicked" 2021-12-14 02:05:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:05:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:05:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:05:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:05:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:05:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:05:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:05:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:05:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:05:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:05:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:05:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:05:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:05:06 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:06 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:05:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:05:06 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:05:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:05:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:05:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:05:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:05:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:05:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:05:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:05:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:05:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:05:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:05:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:05:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:05:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:05:06 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:05:06 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:05:06 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:06 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:05:06 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:05:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:05:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:05:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:05:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:05:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:05:31 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:05:31 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:31 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:05:31 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:31 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:05:31 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:05:31 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:05:31 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:05:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:05:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:05:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:05:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:05:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:05:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:05:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:05:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:05:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:05:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:05:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:05:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:05:32 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:05:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:05:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:05:32 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:32 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:05:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:05:32 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:05:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 02:05:32 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:05:32 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 02:05:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6']", 'Base')" 2021-12-14 02:05:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:32 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6'] found." 2021-12-14 02:05:32 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6'] found." 2021-12-14 02:05:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6']", 'Base')" 2021-12-14 02:05:32 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6']" 2021-12-14 02:05:32 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Address v6'] was clicked" 2021-12-14 02:05:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:05:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:05:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:05:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:05:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:05:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:05:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:05:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:35 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:05:35 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:35 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:05:35 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:05:35 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:05:35 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:05:35 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:05:35 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:35 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:05:35 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:05:35 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:05:35 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:05:35 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:05:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:05:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:05:35 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:35 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:05:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:05:35 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:05:35 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:35 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:05:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:05:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:05:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:05:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:05:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:05:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:05:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:05:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:05:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:05:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:05:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:05:36 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:05:36 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:05:36 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:05:36 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:06:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:06:00 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:06:00 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:00 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:06:00 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:00 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:06:00 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:06:00 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:06:01 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:06:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:06:01 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:01 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:06:01 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:01 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:06:01 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:06:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:06:01 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:06:01 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:06:01 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:01 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:06:01 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:06:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 02:06:01 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:06:01 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection']", 'Base')" 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection'] found." 2021-12-14 02:06:01 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:01 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection'] found." 2021-12-14 02:06:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection']", 'Base')" 2021-12-14 02:06:01 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection']" 2021-12-14 02:06:02 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='IP Protection'] was clicked" 2021-12-14 02:06:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:06:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:06:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:06:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:06:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:06:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:06:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:06:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:04 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:06:04 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:04 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:06:04 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:06:04 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:06:04 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:06:04 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:06:04 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:04 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:06:04 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:06:04 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:06:04 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:06:04 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:06:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:06:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:06:04 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:04 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:06:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:06:04 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:06:04 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:04 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:06:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:06:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:06:05 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:05 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:06:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:06:05 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:06:05 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:06:05 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:06:05 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:05 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:06:05 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:06:05 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:06:05 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:06:05 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:06:05 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:06:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:06:30 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:06:30 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:30 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:06:30 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:31 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:06:31 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:06:31 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:06:31 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:06:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:06:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:06:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:06:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:06:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:06:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:06:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:06:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:06:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:06:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 02:06:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:06:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer']", 'Base')" 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer'] found." 2021-12-14 02:06:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:32 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer'] found." 2021-12-14 02:06:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer']", 'Base')" 2021-12-14 02:06:32 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer']" 2021-12-14 02:06:32 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Manufacturer'] was clicked" 2021-12-14 02:06:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:06:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:06:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:06:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:06:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:06:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:06:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:06:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:06:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:34 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:06:34 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:06:34 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:06:34 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:06:34 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:06:34 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:34 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:06:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:06:34 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:06:34 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:06:34 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:06:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:06:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:06:34 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:34 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:06:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:06:34 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:06:34 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:34 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:06:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:06:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:06:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:06:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:06:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:06:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:06:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:06:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:06:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:06:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:06:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:06:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:06:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:06:35 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:06:35 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:07:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:07:00 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:07:00 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:00 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:07:00 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:00 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:07:00 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:07:00 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:07:00 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:07:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:07:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:07:00 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:00 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:07:00 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:07:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:07:00 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:07:00 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:07:00 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:00 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:07:00 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:07:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 02:07:00 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:07:00 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference']", 'Base')" 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference'] found." 2021-12-14 02:07:00 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:00 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference'] found." 2021-12-14 02:07:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference']", 'Base')" 2021-12-14 02:07:00 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference']" 2021-12-14 02:07:01 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Reference'] was clicked" 2021-12-14 02:07:01 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:07:01 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:01 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:07:01 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:01 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:07:01 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:07:01 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:07:01 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:01 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:07:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:07:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:03 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:07:03 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:03 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:07:03 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:07:03 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:07:03 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:07:03 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:07:03 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:03 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:07:03 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:07:03 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:07:03 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:07:03 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:07:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:07:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:07:03 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:03 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:07:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:07:03 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:07:03 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:03 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:07:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:07:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:07:04 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:04 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:07:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:07:04 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:07:04 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:07:04 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:07:04 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:04 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:07:04 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:04 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:07:04 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:07:04 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:07:04 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:07:04 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:07:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:07:29 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:07:29 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:29 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:07:29 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:29 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:07:29 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:07:29 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:07:29 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:07:29 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:07:29 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:29 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:07:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:07:29 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:07:29 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:29 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:07:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:07:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:07:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:07:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:07:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:07:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:07:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:07:29 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:07:29 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:07:29 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:29 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:07:29 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:29 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] found." 2021-12-14 02:07:29 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']", 'Expandable')" 2021-12-14 02:07:29 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:07:29 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:29 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/.. found." 2021-12-14 02:07:29 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']" 2021-12-14 02:07:30 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment'] was clicked" 2021-12-14 02:07:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version']", 'Base')" 2021-12-14 02:07:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:30 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version'] found." 2021-12-14 02:07:30 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:30 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version'] found." 2021-12-14 02:07:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version']", 'Base')" 2021-12-14 02:07:30 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version']" 2021-12-14 02:07:30 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Equipment']/../..//*[contains(@class,'depth2')]//*[text()='Version'] was clicked" 2021-12-14 02:07:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:07:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:07:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:07:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:07:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:07:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:07:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:07:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:07:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:07:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:07:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:07:32 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:07:32 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:07:32 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:32 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:07:32 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:07:32 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:07:32 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:07:32 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:07:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:07:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:07:32 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:32 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:07:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:07:32 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:07:32 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:32 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:07:32 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:07:32 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:32 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:07:32 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:32 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:07:32 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:07:32 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:07:33 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:07:33 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:07:33 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:33 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:07:33 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:07:33 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:07:33 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:07:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:07:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:07:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:07:58 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:07:58 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:58 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:07:58 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:58 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:07:58 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:07:58 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:07:58 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:07:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:07:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:07:58 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:58 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:07:58 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:07:58 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:58 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:07:58 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:07:58 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:07:58 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:58 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:07:58 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:07:58 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:58 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 02:07:58 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:07:58 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control']", 'Base')" 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control'] found." 2021-12-14 02:07:58 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:58 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control'] found." 2021-12-14 02:07:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control']", 'Base')" 2021-12-14 02:07:58 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control']" 2021-12-14 02:07:59 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Scene Control'] was clicked" 2021-12-14 02:07:59 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:07:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:07:59 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:07:59 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:59 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:07:59 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:07:59 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:07:59 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:07:59 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:08:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:08:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:02 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:08:02 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:02 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:08:02 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:08:02 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:08:02 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:08:02 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:08:02 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:02 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:08:02 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:08:02 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:08:02 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:08:02 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:08:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:08:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:08:02 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:02 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:08:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:08:02 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:08:02 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:02 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:08:02 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:08:02 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:02 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:08:02 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:02 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:08:02 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:08:02 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:08:02 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:08:02 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:08:02 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:02 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:08:02 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:08:02 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:08:02 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:08:03 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:08:03 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:08:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:08:30 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:08:30 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:30 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:08:30 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:30 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:08:30 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:08:30 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:08:31 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:08:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:08:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:08:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:08:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:08:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:08:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:08:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:08:31 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:31 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:08:31 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:08:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 02:08:31 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:08:31 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine']", 'Base')" 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine'] found." 2021-12-14 02:08:31 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:31 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine'] found." 2021-12-14 02:08:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine']", 'Base')" 2021-12-14 02:08:31 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine']" 2021-12-14 02:08:32 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Coffee Machine'] was clicked" 2021-12-14 02:08:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:08:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:08:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:08:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:08:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:08:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:08:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:08:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:08:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:34 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:08:34 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:08:34 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:08:34 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:08:34 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:08:34 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:34 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:08:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:08:34 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:08:34 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:08:34 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:08:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:08:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:08:34 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:34 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:08:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:08:34 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:08:34 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:34 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:08:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:08:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:08:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:08:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:08:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:08:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:08:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:08:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:08:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:08:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:08:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:08:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:08:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:08:35 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:08:35 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:09:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:09:02 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:09:02 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:02 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:09:02 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:02 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:09:02 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:09:02 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:09:03 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:09:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:09:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:09:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:09:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:09:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:09:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:09:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:09:03 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:03 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:09:03 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:09:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 02:09:03 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:09:03 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference']", 'Base')" 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference'] found." 2021-12-14 02:09:03 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:03 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference'] found." 2021-12-14 02:09:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference']", 'Base')" 2021-12-14 02:09:03 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference']" 2021-12-14 02:09:04 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Videoconference'] was clicked" 2021-12-14 02:09:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:09:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:09:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:09:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:09:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:09:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:09:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:09:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:09:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:09:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:09:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:09:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:09:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:09:06 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:06 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:09:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:09:06 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:09:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:09:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:09:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:09:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:09:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:09:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:09:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:09:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:09:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:09:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:09:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:09:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:09:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:09:07 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:09:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:09:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:09:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:09:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:09:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:09:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:09:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:09:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:09:35 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:09:35 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:35 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:09:35 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:35 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:09:35 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:09:35 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:09:36 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:09:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:09:36 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:36 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:09:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:09:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:09:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:09:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:09:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:09:36 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:09:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:09:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 02:09:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:09:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector']", 'Base')" 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector'] found." 2021-12-14 02:09:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector'] found." 2021-12-14 02:09:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector']", 'Base')" 2021-12-14 02:09:36 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector']" 2021-12-14 02:09:37 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Video Projector'] was clicked" 2021-12-14 02:09:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:09:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:37 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:09:37 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:37 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:09:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:09:37 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:09:37 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:37 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:09:39 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:09:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:39 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:09:39 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:39 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:09:39 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:09:39 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:09:39 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:09:39 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:09:39 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:39 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:09:39 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:09:39 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:09:39 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:09:39 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:09:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:09:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:09:39 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:39 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:09:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:09:39 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:09:39 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:39 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:09:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:09:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:09:39 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:39 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:09:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:09:39 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:09:40 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:09:40 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:09:40 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:09:40 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:09:40 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:09:40 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:09:40 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:09:40 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:09:40 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:09:40 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:10:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:10:05 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:10:05 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:05 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:10:05 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:05 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:10:05 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:10:05 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:10:05 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:10:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:10:05 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:05 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:10:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:10:06 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:10:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:10:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:10:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:10:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:10:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:10:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:10:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:10:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:10:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:10:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:10:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:10:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:10:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:10:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:10:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 02:10:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:10:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 02:10:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen']", 'Base')" 2021-12-14 02:10:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen'] found." 2021-12-14 02:10:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen'] found." 2021-12-14 02:10:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen']", 'Base')" 2021-12-14 02:10:06 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen']" 2021-12-14 02:10:07 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='TV Screen'] was clicked" 2021-12-14 02:10:07 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:10:07 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:07 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:10:07 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:07 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:10:07 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:10:07 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:10:07 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:10:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:10:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:09 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:10:09 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:09 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:10:09 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:10:09 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:10:09 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:10:09 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:10:09 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:09 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:10:09 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:10:09 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:10:09 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:10:09 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:10:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:10:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:10:09 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:10:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:10:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:10:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:10:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:10:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:10:09 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:09 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:10:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:10:09 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:10:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:10:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:10:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:10:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:10:10 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:10:10 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:10:10 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:10:10 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:10:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:10:35 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:10:35 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:35 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:10:35 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:35 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:10:35 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:10:35 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:10:35 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:10:35 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:10:35 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:35 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:10:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:10:35 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:10:35 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:35 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:10:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:10:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:10:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:35 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:10:35 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:10:35 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:10:35 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:35 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:10:35 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:10:35 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:10:35 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:10:35 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:35 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:10:35 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:36 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:10:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:10:36 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:10:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 02:10:36 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:10:36 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 02:10:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board']", 'Base')" 2021-12-14 02:10:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:36 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board'] found." 2021-12-14 02:10:36 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:36 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board'] found." 2021-12-14 02:10:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board']", 'Base')" 2021-12-14 02:10:36 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board']" 2021-12-14 02:10:36 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='White Board'] was clicked" 2021-12-14 02:10:36 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:10:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:36 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:10:36 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:36 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:10:36 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:10:36 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:10:36 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:36 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:10:38 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:10:38 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:38 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:10:38 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:38 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:10:38 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:10:38 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:10:38 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:10:38 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:10:39 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:39 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:10:39 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:10:39 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:10:39 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:10:39 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:10:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:10:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:10:39 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:39 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:10:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:10:39 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:10:39 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:39 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:10:39 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:10:39 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:39 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:10:39 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:39 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:10:39 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:10:39 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:10:39 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:10:39 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:10:39 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:10:39 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:10:39 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:10:39 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:10:39 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:10:39 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:10:40 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:10:40 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:11:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:11:05 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:11:05 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:05 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:11:05 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:05 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:11:05 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:11:05 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:11:05 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:11:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:11:05 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:05 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:11:05 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:11:06 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:06 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:11:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:11:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:11:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:11:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:11:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:11:06 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:06 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:11:06 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:11:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 02:11:06 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:11:06 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system']", 'Base')" 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system'] found." 2021-12-14 02:11:06 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:06 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system'] found." 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system']", 'Base')" 2021-12-14 02:11:06 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system']" 2021-12-14 02:11:06 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Sound system'] was clicked" 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:11:06 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:06 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:11:06 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:11:06 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:11:06 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:07 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:11:09 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:11:09 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:09 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:11:09 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:09 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:11:09 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:11:09 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:11:09 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:11:09 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:11:09 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:09 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:11:09 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:11:09 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:11:09 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:11:09 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:11:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:11:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:11:09 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:09 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:11:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:11:09 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:11:09 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:09 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:11:09 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:11:09 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:09 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:11:09 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:09 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:11:09 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:11:09 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:11:09 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:11:09 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:11:09 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:09 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:11:09 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:09 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:11:09 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:11:09 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:11:10 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:11:10 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:11:38 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:11:38 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:11:38 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:38 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:11:38 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:38 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:11:38 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:11:38 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:11:39 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:11:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:11:39 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:39 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:11:39 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:39 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:11:39 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:11:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:11:39 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:11:39 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:11:39 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:39 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] found." 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']", 'Expandable')" 2021-12-14 02:11:39 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:11:39 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:39 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/.. found." 2021-12-14 02:11:39 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']" 2021-12-14 02:11:39 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities'] was clicked" 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone']", 'Base')" 2021-12-14 02:11:39 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:40 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone'] found." 2021-12-14 02:11:40 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:40 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone'] found." 2021-12-14 02:11:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone']", 'Base')" 2021-12-14 02:11:40 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone']" 2021-12-14 02:11:40 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Amenities']/../..//*[contains(@class,'depth2')]//*[text()='Microphone'] was clicked" 2021-12-14 02:11:40 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:11:40 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:40 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:11:40 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:40 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:11:40 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:11:40 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:11:40 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:40 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:11:42 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:11:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:42 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:11:42 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:42 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:11:42 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:11:42 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:11:42 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:11:42 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:11:42 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:42 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:11:42 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:11:42 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:11:42 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:11:42 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:11:42 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:11:42 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:42 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:11:42 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:42 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:11:42 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:11:42 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:11:42 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:42 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:11:43 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:11:43 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:43 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:11:43 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:43 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:11:43 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:11:43 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:11:43 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:11:43 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:11:43 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:11:43 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:11:43 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:11:43 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:11:43 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:11:43 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:11:43 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:11:43 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:12:10 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:12:10 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:12:10 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:10 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:12:10 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:10 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:12:10 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:12:10 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:12:10 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:12:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:12:10 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:10 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:12:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:12:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:12:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:12:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:12:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 02:12:10 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:10 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 02:12:10 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 02:12:10 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:10 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 02:12:10 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 02:12:10 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross']", 'Base')" 2021-12-14 02:12:10 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:11 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross'] found." 2021-12-14 02:12:11 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:11 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross'] found." 2021-12-14 02:12:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross']", 'Base')" 2021-12-14 02:12:11 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross']" 2021-12-14 02:12:11 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Gross'] was clicked" 2021-12-14 02:12:11 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:12:11 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:11 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:12:11 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:11 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:12:11 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:12:11 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:12:11 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:11 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:12:13 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:12:13 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:13 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:12:13 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:13 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:12:13 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:12:13 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:12:13 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:12:13 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:12:13 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:14 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:12:14 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:12:14 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:12:14 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:12:14 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:12:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:12:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:12:14 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:14 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:12:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:12:14 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:12:14 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:14 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:12:14 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:12:14 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:14 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:12:14 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:14 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:12:14 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:12:14 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:12:14 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:12:14 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:12:14 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:14 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:12:14 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:12:14 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:12:14 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:12:15 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:12:15 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:12:41 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:12:41 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:12:41 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:41 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:12:41 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:41 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:12:41 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:12:41 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:12:41 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:12:41 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:12:41 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:41 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:12:41 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:41 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:12:41 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:12:41 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:41 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:12:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:12:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:41 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:12:41 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:41 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:12:41 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:12:41 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:12:41 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:41 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:12:41 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:12:41 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:12:41 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 02:12:41 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:41 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 02:12:42 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:42 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 02:12:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 02:12:42 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 02:12:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 02:12:42 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 02:12:42 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 02:12:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net']", 'Base')" 2021-12-14 02:12:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:42 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net'] found." 2021-12-14 02:12:42 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:42 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net'] found." 2021-12-14 02:12:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net']", 'Base')" 2021-12-14 02:12:42 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net']" 2021-12-14 02:12:42 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Surface - Net'] was clicked" 2021-12-14 02:12:42 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:12:42 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:42 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:12:42 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:42 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:12:42 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:12:42 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:12:42 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:42 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:12:44 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:12:44 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:44 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:12:44 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:44 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:12:44 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:12:44 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:12:44 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:12:44 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:12:44 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:44 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:12:44 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:12:45 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:12:45 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:12:45 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:12:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:12:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:12:45 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:45 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:12:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:12:45 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:12:45 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:45 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:12:45 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:12:45 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:45 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:12:45 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:45 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:12:45 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:12:45 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:12:45 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:12:45 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:12:45 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:12:45 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:12:45 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:12:45 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:12:45 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:12:45 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:12:45 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:12:45 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:13:14 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:13:14 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:13:14 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:14 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:13:14 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:15 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:13:15 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:13:15 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:13:15 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:13:15 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:13:15 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:15 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:13:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:13:15 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:13:15 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:15 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:13:15 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:13:15 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:15 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:13:15 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:16 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:13:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:13:16 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:13:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:13:16 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:13:16 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:13:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 02:13:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 02:13:16 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:16 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 02:13:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 02:13:16 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 02:13:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 02:13:16 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 02:13:16 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 02:13:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height']", 'Base')" 2021-12-14 02:13:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:16 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height'] found." 2021-12-14 02:13:16 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:16 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height'] found." 2021-12-14 02:13:16 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height']", 'Base')" 2021-12-14 02:13:16 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height']" 2021-12-14 02:13:16 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Height'] was clicked" 2021-12-14 02:13:16 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:13:16 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:16 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:13:17 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:17 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:13:17 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:13:17 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:13:17 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:17 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:13:18 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:13:18 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:18 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:13:18 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:18 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:13:18 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:13:18 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:13:18 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:13:18 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:13:18 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:19 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:13:19 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:13:19 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:13:19 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:13:19 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:13:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:13:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:13:19 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:19 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:13:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:13:19 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:13:19 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:19 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:13:19 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:13:19 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:19 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:13:19 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:19 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:13:19 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:13:19 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:13:19 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:13:19 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:13:19 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:19 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:13:19 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:13:19 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:13:19 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:13:20 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:13:20 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:13:46 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:13:46 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:13:46 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:46 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:13:46 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:46 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:13:46 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:13:46 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:13:46 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:13:46 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:13:46 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:46 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:13:46 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:13:47 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:47 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:13:47 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:47 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:13:47 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:13:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:13:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:13:47 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 02:13:47 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:47 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 02:13:47 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 02:13:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 02:13:47 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 02:13:47 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length']", 'Base')" 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length'] found." 2021-12-14 02:13:47 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:47 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length'] found." 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length']", 'Base')" 2021-12-14 02:13:47 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length']" 2021-12-14 02:13:47 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Length'] was clicked" 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:47 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:13:47 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:48 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:13:48 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:13:48 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:13:48 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:48 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:13:49 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:13:49 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:49 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:13:49 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:49 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:13:49 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:13:49 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:13:50 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:13:50 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:13:50 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:50 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:13:50 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:13:50 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:13:50 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:13:50 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:13:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:13:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:13:50 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:50 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:13:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:13:50 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:13:50 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:50 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:13:50 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:13:50 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:50 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:13:50 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:50 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:13:50 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:13:50 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:13:50 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:13:50 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:13:50 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:13:50 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:13:50 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:13:50 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:13:50 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:13:50 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:13:51 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:13:51 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:14:19 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:14:19 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:14:19 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:14:19 - AssetTemplatesPage - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:14:20 - Button - INFO - Waiting for element //*[text()='Add property']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:20 - Button - INFO - Element //*[text()='Add property']//ancestor::button found." 2021-12-14 02:14:20 - AssetTemplatesPage - INFO - Found element ("//*[text()='Add property']//ancestor::button", 'Button')" 2021-12-14 02:14:20 - Button - INFO - Trying to click element with xpath //*[text()='Add property']//ancestor::button" 2021-12-14 02:14:20 - Button - INFO - Element with xpath //*[text()='Add property']//ancestor::button was clicked" 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:14:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:14:20 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:20 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:14:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others'] found." 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']", 'Expandable')" 2021-12-14 02:14:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:14:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/.. found." 2021-12-14 02:14:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']" 2021-12-14 02:14:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others'] was clicked" 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 02:14:20 - Expandable - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:20 - Expandable - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] found." 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']", 'Expandable')" 2021-12-14 02:14:20 - Expandable - INFO - Trying to get base element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 02:14:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/.. found." 2021-12-14 02:14:20 - Expandable - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']" 2021-12-14 02:14:20 - Expandable - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions'] was clicked" 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width']", 'Base')" 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width'] found." 2021-12-14 02:14:20 - BaseElement - INFO - Waiting for element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:20 - BaseElement - INFO - Element //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width'] found." 2021-12-14 02:14:20 - AddDatapointPropertyModal - INFO - Found element ("//*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width']", 'Base')" 2021-12-14 02:14:20 - BaseElement - INFO - Trying to click element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width']" 2021-12-14 02:14:21 - BaseElement - INFO - Element with xpath //*[@class='ReactModalPortal']//*[text()='Others']/../..//*[text()='Dimensions']/../..//*[contains(@class,'depth2')]//*[text()='Width'] was clicked" 2021-12-14 02:14:21 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:14:21 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:14:21 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:14:21 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:21 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:14:21 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:14:21 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:14:21 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:21 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:14:22 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:14:22 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:14:22 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:14:22 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:23 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:14:23 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:14:23 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:14:23 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:14:23 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:14:23 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:23 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:14:23 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:14:23 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:14:23 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:14:23 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:14:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:14:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:14:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:14:23 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:23 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:14:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:14:23 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:14:23 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:23 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:14:23 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:14:23 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:14:23 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:14:23 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:23 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:14:23 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:14:23 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:14:23 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:14:23 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:14:23 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:14:23 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:14:23 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:23 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:14:23 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:14:23 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:14:24 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:14:24 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:14:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:14:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:14:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:14:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:14:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:14:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:14:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:14:54 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 02:14:54 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:14:54 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 02:14:54 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:14:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 02:14:54 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 02:14:54 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]" 2021-12-14 02:14:55 - Button - WARNING - StaleElementReferenceException occurred. Trying to refresh driver." -----------------------------Captured log teardown------------------------------ 2021-12-14 02:14:56 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_dodanie_wszystkich_properties.png" | |||
| Failed | tests/Asset_Template_tests/Functional_tests/test_datapoints_and_properties.py::test_edycja_wszystkich_properties | 702.37 | |
|
asset_templates_page = <frontend.objects.Pages.asset_templates_page.AssetTemplatesPage object at 0x000002744BA040A0> @pytest.mark.order(21) def test_edycja_wszystkich_properties(asset_templates_page): """ Test edytujący wszystkie standardowe properties WARUNKI WSTĘPNE: - Jestem na stronie Asset templates - Jestem w trybie edycji Asset template'u" OPIS KROKU: 1. Przejdź do zakładki 'Properties' 2. Kliknij edycję każdego properties, zmień nazwę, typ, dodaj tag i zapisz OCZEKIWANY REZULTAT: 1. Lista properties jest wyświetlona 2. Każde property zostało poprawnie poddane edycji i zapisane """ assert asset_templates_page.url == asset_templates_page.driver.current_url template_table = asset_templates_page.template_table(table_name='Central').get_table( unique_column_name='TEMPLATE NAME') assert template_table[TEMPLATE_FUNCTIONAL_TESTS]['TEMPLATE NAME'] == TEMPLATE_FUNCTIONAL_TESTS asset_templates_page.template_table('Central').edit_row(unique_column_name='TEMPLATE NAME', row_name=TEMPLATE_FUNCTIONAL_TESTS) # step 1 asset_templates_page.open_tab('Properties') points_table = asset_templates_page.points_properties_table.get_table(unique_column_name='PROPERTY') # step 2 property_names = [] failing_propertys = [] for point_id in range(1, len(points_table)): asset_templates_page.points_properties_table.edit_row(row_id=point_id) edit_point_modal = AddDatapointPropertyModal(asset_templates_page.driver) property_name = edit_point_modal.get_name() property_name = property_name[0:24] + create_random_string(2) + '_edit' property_names.append(property_name) edit_point_modal.set_name(property_name) edit_point_modal.set_type(edit_point_modal.properties_types[random.randint(0, 1)]) edit_point_modal.tags.set_new_tag('edit') try: > edit_point_modal.save() tests\Asset_Template_tests\Functional_tests\test_datapoints_and_properties.py:256: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <frontend.objects.Modals.add_datapoint_property_modal.AddDatapointPropertyModal object at 0x000002744B918520> def save(self) -> None: """ Kliknięcie przycisku 'save' lub 'accept' :return: """ save_button = self.get_element((self.save_xpath, 'Button')) save_button.click() > save_button.wait_for_element_to_disappear(timeout=30) frontend\objects\Modals\base_modal.py:29: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <frontend.elements.button.Button object at 0x000002744B896970> timeout = 30, poll_frequency = 0.1 def wait_for_element_to_disappear(self, timeout: int = 5, poll_frequency: float = 0.1) -> None: """ Oczekiwanie na zniknięcie elementu :param timeout: maksymalny czas czekania na element :param poll_frequency: czas próbkowania co jaki jest sprawdzana widoczność elementu """ self.logger.info(f'Waiting for element to disappear {self.xpath} with poll frequency {poll_frequency} and timeout {timeout}') > WebDriverWait(self.driver, timeout, poll_frequency).until( invisibility_of_element_located((By.XPATH, self.xpath)), message=f'Element is still visible in timeout {timeout}s.') frontend\elements\base_element.py:77: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <[AttributeError("'WebElement' object has no attribute 'session_id'") raised in repr()] WebDriverWait object at 0x2744b8963a0> method = <selenium.webdriver.support.expected_conditions.invisibility_of_element_located object at 0x000002744B896280> message = 'Element is still visible in timeout 30s.' def until(self, method, message=''): """Calls the method provided with the driver as an argument until the \ return value is not False.""" screen = None stacktrace = None end_time = time.time() + self._timeout while True: try: value = method(self._driver) if value: return value except self._ignored_exceptions as exc: screen = getattr(exc, 'screen', None) stacktrace = getattr(exc, 'stacktrace', None) time.sleep(self._poll) if time.time() > end_time: break > raise TimeoutException(message, screen, stacktrace) E selenium.common.exceptions.TimeoutException: Message: Element is still visible in timeout 30s. C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\support\wait.py:80: TimeoutException During handling of the above exception, another exception occurred: self = <frontend.elements.button.Button object at 0x000002744B896F70> def click(self) -> None: """ Click on a element :return: """ self.logger.info(f'Trying to click element with xpath {self.xpath}') try: > self.driver.click() frontend\elements\base_element.py:33: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.remote.webelement.WebElement (session="f2e06290ac4c9e8ea39c3e8cc25df2c7", element="5e2a6015-d273-448d-b64d-332e764b4eef")> def click(self): """Clicks the element.""" > self._execute(Command.CLICK_ELEMENT) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\webelement.py:80: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.remote.webelement.WebElement (session="f2e06290ac4c9e8ea39c3e8cc25df2c7", element="5e2a6015-d273-448d-b64d-332e764b4eef")> command = 'clickElement' params = {'id': '5e2a6015-d273-448d-b64d-332e764b4eef', 'sessionId': 'f2e06290ac4c9e8ea39c3e8cc25df2c7'} def _execute(self, command, params=None): """Executes a command against the underlying HTML element. Args: command: The name of the command to _execute as a string. params: A dictionary of named parameters to send with the command. Returns: The command's JSON response loaded into a dictionary object. """ if not params: params = {} params['id'] = self._id > return self._parent.execute(command, params) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\webelement.py:633: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.chrome.webdriver.WebDriver (session="f2e06290ac4c9e8ea39c3e8cc25df2c7")> driver_command = 'clickElement' params = {'id': '5e2a6015-d273-448d-b64d-332e764b4eef'} def execute(self, driver_command, params=None): """ Sends a command to be executed by a command.CommandExecutor. :Args: - driver_command: The name of the command to execute as a string. - params: A dictionary of named parameters to send with the command. :Returns: The command's JSON response loaded into a dictionary object. """ if self.session_id is not None: if not params: params = {'sessionId': self.session_id} elif 'sessionId' not in params: params['sessionId'] = self.session_id params = self._wrap_value(params) response = self.command_executor.execute(driver_command, params) if response: > self.error_handler.check_response(response) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\webdriver.py:321: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x000002744B79C760> response = {'status': 404, 'value': '{"value":{"error":"stale element reference","message":"stale element reference: element is n...unk [0x75FC6739+25]\\n\\tRtlGetFullPathName_UEx [0x77C28AFF+1215]\\n\\tRtlGetFullPathName_UEx [0x77C28ACD+1165]\\n"}}'} def check_response(self, response): """ Checks that a JSON response from the WebDriver does not have an error. :Args: - response - The JSON response from the WebDriver server as a dictionary object. :Raises: If the response contains an error message. """ status = response.get('status', None) if status is None or status == ErrorCode.SUCCESS: return value = None message = response.get("message", "") screen = response.get("screen", "") stacktrace = None if isinstance(status, int): value_json = response.get('value', None) if value_json and isinstance(value_json, basestring): import json try: value = json.loads(value_json) if len(value.keys()) == 1: value = value['value'] status = value.get('error', None) if status is None: status = value["status"] message = value["value"] if not isinstance(message, basestring): value = message message = message.get('message') else: message = value.get('message', None) except ValueError: pass exception_class = ErrorInResponseException if status in ErrorCode.NO_SUCH_ELEMENT: exception_class = NoSuchElementException elif status in ErrorCode.NO_SUCH_FRAME: exception_class = NoSuchFrameException elif status in ErrorCode.NO_SUCH_WINDOW: exception_class = NoSuchWindowException elif status in ErrorCode.STALE_ELEMENT_REFERENCE: exception_class = StaleElementReferenceException elif status in ErrorCode.ELEMENT_NOT_VISIBLE: exception_class = ElementNotVisibleException elif status in ErrorCode.INVALID_ELEMENT_STATE: exception_class = InvalidElementStateException elif status in ErrorCode.INVALID_SELECTOR \ or status in ErrorCode.INVALID_XPATH_SELECTOR \ or status in ErrorCode.INVALID_XPATH_SELECTOR_RETURN_TYPER: exception_class = InvalidSelectorException elif status in ErrorCode.ELEMENT_IS_NOT_SELECTABLE: exception_class = ElementNotSelectableException elif status in ErrorCode.ELEMENT_NOT_INTERACTABLE: exception_class = ElementNotInteractableException elif status in ErrorCode.INVALID_COOKIE_DOMAIN: exception_class = InvalidCookieDomainException elif status in ErrorCode.UNABLE_TO_SET_COOKIE: exception_class = UnableToSetCookieException elif status in ErrorCode.TIMEOUT: exception_class = TimeoutException elif status in ErrorCode.SCRIPT_TIMEOUT: exception_class = TimeoutException elif status in ErrorCode.UNKNOWN_ERROR: exception_class = WebDriverException elif status in ErrorCode.UNEXPECTED_ALERT_OPEN: exception_class = UnexpectedAlertPresentException elif status in ErrorCode.NO_ALERT_OPEN: exception_class = NoAlertPresentException elif status in ErrorCode.IME_NOT_AVAILABLE: exception_class = ImeNotAvailableException elif status in ErrorCode.IME_ENGINE_ACTIVATION_FAILED: exception_class = ImeActivationFailedException elif status in ErrorCode.MOVE_TARGET_OUT_OF_BOUNDS: exception_class = MoveTargetOutOfBoundsException elif status in ErrorCode.JAVASCRIPT_ERROR: exception_class = JavascriptException elif status in ErrorCode.SESSION_NOT_CREATED: exception_class = SessionNotCreatedException elif status in ErrorCode.INVALID_ARGUMENT: exception_class = InvalidArgumentException elif status in ErrorCode.NO_SUCH_COOKIE: exception_class = NoSuchCookieException elif status in ErrorCode.UNABLE_TO_CAPTURE_SCREEN: exception_class = ScreenshotException elif status in ErrorCode.ELEMENT_CLICK_INTERCEPTED: exception_class = ElementClickInterceptedException elif status in ErrorCode.INSECURE_CERTIFICATE: exception_class = InsecureCertificateException elif status in ErrorCode.INVALID_COORDINATES: exception_class = InvalidCoordinatesException elif status in ErrorCode.INVALID_SESSION_ID: exception_class = InvalidSessionIdException elif status in ErrorCode.UNKNOWN_METHOD: exception_class = UnknownMethodException else: exception_class = WebDriverException if value == '' or value is None: value = response['value'] if isinstance(value, basestring): if exception_class == ErrorInResponseException: raise exception_class(response, value) raise exception_class(value) if message == "" and 'message' in value: message = value['message'] screen = None if 'screen' in value: screen = value['screen'] stacktrace = None if 'stackTrace' in value and value['stackTrace']: stacktrace = [] try: for frame in value['stackTrace']: line = self._value_or_default(frame, 'lineNumber', '') file = self._value_or_default(frame, 'fileName', '<anonymous>') if line: file = "%s:%s" % (file, line) meth = self._value_or_default(frame, 'methodName', '<anonymous>') if 'className' in frame: meth = "%s.%s" % (frame['className'], meth) msg = " at %s (%s)" msg = msg % (meth, file) stacktrace.append(msg) except TypeError: pass if exception_class == ErrorInResponseException: raise exception_class(response, message) elif exception_class == UnexpectedAlertPresentException: alert_text = None if 'data' in value: alert_text = value['data'].get('text') elif 'alert' in value: alert_text = value['alert'].get('text') raise exception_class(message, screen, stacktrace, alert_text) > raise exception_class(message, screen, stacktrace) E selenium.common.exceptions.StaleElementReferenceException: Message: stale element reference: element is not attached to the page document E (Session info: chrome=96.0.4664.93) C:\Users\mateu\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\errorhandler.py:242: StaleElementReferenceException During handling of the above exception, another exception occurred: asset_templates_page = <frontend.objects.Pages.asset_templates_page.AssetTemplatesPage object at 0x000002744BA040A0> @pytest.mark.order(21) def test_edycja_wszystkich_properties(asset_templates_page): """ Test edytujący wszystkie standardowe properties WARUNKI WSTĘPNE: - Jestem na stronie Asset templates - Jestem w trybie edycji Asset template'u" OPIS KROKU: 1. Przejdź do zakładki 'Properties' 2. Kliknij edycję każdego properties, zmień nazwę, typ, dodaj tag i zapisz OCZEKIWANY REZULTAT: 1. Lista properties jest wyświetlona 2. Każde property zostało poprawnie poddane edycji i zapisane """ assert asset_templates_page.url == asset_templates_page.driver.current_url template_table = asset_templates_page.template_table(table_name='Central').get_table( unique_column_name='TEMPLATE NAME') assert template_table[TEMPLATE_FUNCTIONAL_TESTS]['TEMPLATE NAME'] == TEMPLATE_FUNCTIONAL_TESTS asset_templates_page.template_table('Central').edit_row(unique_column_name='TEMPLATE NAME', row_name=TEMPLATE_FUNCTIONAL_TESTS) # step 1 asset_templates_page.open_tab('Properties') points_table = asset_templates_page.points_properties_table.get_table(unique_column_name='PROPERTY') # step 2 property_names = [] failing_propertys = [] for point_id in range(1, len(points_table)): asset_templates_page.points_properties_table.edit_row(row_id=point_id) edit_point_modal = AddDatapointPropertyModal(asset_templates_page.driver) property_name = edit_point_modal.get_name() property_name = property_name[0:24] + create_random_string(2) + '_edit' property_names.append(property_name) edit_point_modal.set_name(property_name) edit_point_modal.set_type(edit_point_modal.properties_types[random.randint(0, 1)]) edit_point_modal.tags.set_new_tag('edit') try: edit_point_modal.save() except: failing_propertys.append(edit_point_modal.get_name()) > edit_point_modal.cancel() tests\Asset_Template_tests\Functional_tests\test_datapoints_and_properties.py:259: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ frontend\objects\Modals\base_modal.py:36: in cancel self.get_element((self.cancel_xpath, 'Button')).click() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <frontend.elements.button.Button object at 0x000002744B896F70> def click(self) -> None: """ Click on a element :return: """ self.logger.info(f'Trying to click element with xpath {self.xpath}') try: self.driver.click() except StaleElementReferenceException: self.logger.warn('StaleElementReferenceException occurred. Trying to refresh driver.') > self.driver.refresh() E AttributeError: 'WebElement' object has no attribute 'refresh' frontend\elements\base_element.py:36: AttributeError -------------------------------Captured log setup------------------------------- 2021-12-14 02:15:00 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 02:15:00 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:01 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 02:15:01 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:01 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 02:15:01 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 02:15:01 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 02:15:01 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 02:15:01 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 02:15:01 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:01 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 02:15:01 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:01 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 02:15:01 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 02:15:01 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 02:15:01 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:01 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 02:15:01 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 02:15:01 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:01 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 02:15:01 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:01 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 02:15:01 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 02:15:01 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 02:15:01 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:01 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 02:15:01 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 02:15:01 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:01 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 02:15:01 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:01 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 02:15:01 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 02:15:01 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 02:15:01 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 02:15:01 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 02:15:01 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:02 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 02:15:02 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:02 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 02:15:02 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 02:15:02 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:03 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 02:15:03 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_myfunctions"]', 'Base')" 2021-12-14 02:15:03 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_myfunctions"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:03 - MenuPage - INFO - Element //*[@id="widget-carousel_myfunctions"] found." 2021-12-14 02:15:03 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_myfunctions"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:03 - BaseElement - INFO - Element //*[@id="widget-carousel_myfunctions"] found." 2021-12-14 02:15:03 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_myfunctions"]', 'Base')" 2021-12-14 02:15:03 - BaseElement - INFO - Trying to click element with xpath //*[@id="widget-carousel_myfunctions"]" 2021-12-14 02:15:03 - BaseElement - INFO - Element with xpath //*[@id="widget-carousel_myfunctions"] was clicked" 2021-12-14 02:15:03 - AssetTemplatesPage - INFO - Trying to find element ("//*[text()='Central']/ancestor::span//button", 'Button')" 2021-12-14 02:15:03 - AssetTemplatesPage - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:12 - AssetTemplatesPage - INFO - Element //*[text()='Central']/ancestor::span//button found." 2021-12-14 02:15:12 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:12 - Button - INFO - Element //*[text()='Central']/ancestor::span//button found." 2021-12-14 02:15:12 - AssetTemplatesPage - INFO - Found element ("//*[text()='Central']/ancestor::span//button", 'Button')" 2021-12-14 02:15:12 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:12 - Button - INFO - Element //*[text()='Central']/ancestor::span//button found." -------------------------------Captured log call-------------------------------- 2021-12-14 02:15:12 - AssetTemplatesPage - INFO - Trying to format the element ("//*[text()='{}']/ancestor::span//table", 'Table') with data ('Central',)" 2021-12-14 02:15:12 - AssetTemplatesPage - INFO - Trying to find component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 02:15:12 - AssetTemplatesPage - INFO - Found component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 02:15:12 - AssetTemplatesPage - INFO - Trying to format the element ("//*[text()='{}']/ancestor::span//table", 'Table') with data ('Central',)" 2021-12-14 02:15:12 - AssetTemplatesPage - INFO - Trying to find component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 02:15:12 - AssetTemplatesPage - INFO - Found component ("//*[text()='Central']/ancestor::span//table", 'Table')" 2021-12-14 02:15:13 - Table - INFO - Trying to find element ('//*[text()=\'Central\']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:15:13 - Table - INFO - Waiting for element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:13 - Table - INFO - Element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] found." 2021-12-14 02:15:13 - Button - INFO - Waiting for element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:13 - Button - INFO - Element //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] found." 2021-12-14 02:15:13 - Table - INFO - Found element ('//*[text()=\'Central\']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:15:13 - Button - INFO - Trying to click element with xpath //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")]" 2021-12-14 02:15:13 - Button - INFO - Element with xpath //*[text()='Central']/ancestor::span//table/tbody/tr[2]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:15:13 - AssetTemplatesPage - INFO - Trying to find element ("//a[text()='Properties']//ancestor::li", 'Base')" 2021-12-14 02:15:13 - AssetTemplatesPage - INFO - Waiting for element //a[text()='Properties']//ancestor::li with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:13 - AssetTemplatesPage - INFO - Element //a[text()='Properties']//ancestor::li found." 2021-12-14 02:15:13 - BaseElement - INFO - Waiting for element //a[text()='Properties']//ancestor::li with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:13 - BaseElement - INFO - Element //a[text()='Properties']//ancestor::li found." 2021-12-14 02:15:13 - AssetTemplatesPage - INFO - Found element ("//a[text()='Properties']//ancestor::li", 'Base')" 2021-12-14 02:15:13 - BaseElement - INFO - Trying to click element with xpath //a[text()='Properties']//ancestor::li" 2021-12-14 02:15:13 - BaseElement - INFO - Element with xpath //a[text()='Properties']//ancestor::li was clicked" 2021-12-14 02:15:13 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:15:13 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:15:23 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:15:23 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:15:23 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[1]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:15:23 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[1]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:23 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[1]/td//i[contains(@class,"edit")] found." 2021-12-14 02:15:23 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[1]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:23 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[1]/td//i[contains(@class,"edit")] found." 2021-12-14 02:15:23 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[1]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:15:23 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[1]/td//i[contains(@class,"edit")]" 2021-12-14 02:15:23 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[1]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:15:23 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:15:23 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:23 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:15:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:15:23 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:15:23 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:23 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:15:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:15:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:15:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:15:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:15:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:15:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:15:23 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:15:23 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:23 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:15:23 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:23 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:15:23 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:15:23 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:15:23 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:23 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:15:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:15:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:25 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:15:25 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:25 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:15:25 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:15:25 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:15:25 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:15:25 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:15:25 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:25 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:15:25 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:15:25 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:15:25 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:15:25 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:15:25 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:15:25 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:25 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:15:25 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:25 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:15:25 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:15:25 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:15:25 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:26 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:15:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:15:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:26 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:15:26 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:26 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:15:26 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:15:26 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:15:26 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:15:26 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:15:26 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:26 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:15:26 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:26 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:15:26 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:15:26 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:15:26 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:15:26 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:15:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:15:55 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:15:55 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:15:55 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[2]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:15:55 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[2]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:55 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[2]/td//i[contains(@class,"edit")] found." 2021-12-14 02:15:55 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[2]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:55 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[2]/td//i[contains(@class,"edit")] found." 2021-12-14 02:15:55 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[2]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:15:55 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[2]/td//i[contains(@class,"edit")]" 2021-12-14 02:15:55 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[2]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:15:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:15:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:15:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:15:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:15:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:15:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:15:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:55 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:15:55 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:55 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:15:55 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:15:55 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:15:55 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:15:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:15:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:15:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:15:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:15:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:15:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:15:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:15:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:57 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:15:57 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:57 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:15:57 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:15:57 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:15:57 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:15:57 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:15:57 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:57 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:15:57 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:15:57 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:15:57 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:15:57 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:15:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:15:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:15:58 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:58 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:15:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:15:58 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:15:58 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:58 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:15:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:15:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:15:58 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:58 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:15:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:15:58 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:15:58 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:15:58 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:15:58 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:15:58 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:15:58 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:15:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:15:58 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:15:58 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:15:58 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:15:58 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:16:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:16:25 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:16:25 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:16:25 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[3]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:16:25 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[3]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:25 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[3]/td//i[contains(@class,"edit")] found." 2021-12-14 02:16:25 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[3]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:25 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[3]/td//i[contains(@class,"edit")] found." 2021-12-14 02:16:25 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[3]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:16:25 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[3]/td//i[contains(@class,"edit")]" 2021-12-14 02:16:26 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[3]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:16:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:16:26 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:26 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:16:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:16:26 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:16:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:16:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:16:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:26 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:16:26 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:26 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:16:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:16:26 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:16:26 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:26 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:16:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:16:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:26 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:16:26 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:26 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:16:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:16:26 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:16:26 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:26 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:16:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:16:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:27 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:16:27 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:27 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:16:27 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:16:27 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:16:27 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:16:27 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:16:27 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:27 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:16:27 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:16:27 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:16:27 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:16:27 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:16:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:16:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:16:27 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:27 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:16:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:16:27 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:16:27 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:28 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:16:28 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:16:28 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:28 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:16:28 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:28 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:16:28 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:16:28 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:16:28 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:16:28 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:16:28 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:28 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:16:28 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:28 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:16:28 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:16:28 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:16:28 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:16:28 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:16:55 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:16:55 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:16:55 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:16:55 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[4]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:16:55 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[4]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:55 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[4]/td//i[contains(@class,"edit")] found." 2021-12-14 02:16:55 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[4]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:55 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[4]/td//i[contains(@class,"edit")] found." 2021-12-14 02:16:55 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[4]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:16:55 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[4]/td//i[contains(@class,"edit")]" 2021-12-14 02:16:55 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[4]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:16:55 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:16:55 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:55 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:16:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:16:55 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:16:55 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:55 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:16:55 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:16:55 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:16:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:16:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:16:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:16:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:16:56 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:16:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:56 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:16:56 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:56 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:16:56 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:16:56 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:16:56 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:56 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:16:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:16:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:57 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:16:57 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:57 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:16:57 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:16:57 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:16:57 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:16:57 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:16:57 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:57 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:16:57 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:16:57 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:16:57 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:16:57 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:16:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:16:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:16:57 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:57 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:16:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:16:57 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:16:57 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:57 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:16:58 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:16:58 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:58 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:16:58 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:58 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:16:58 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:16:58 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:16:58 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:16:58 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:16:58 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:16:58 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:16:58 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:16:58 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:16:58 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:16:58 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:16:58 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:16:58 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:17:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:17:24 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:17:24 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:17:24 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[5]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:17:24 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[5]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:24 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[5]/td//i[contains(@class,"edit")] found." 2021-12-14 02:17:24 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[5]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:24 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[5]/td//i[contains(@class,"edit")] found." 2021-12-14 02:17:24 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[5]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:17:24 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[5]/td//i[contains(@class,"edit")]" 2021-12-14 02:17:25 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[5]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:17:25 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:17:25 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:25 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:17:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:17:25 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:17:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:17:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:17:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:25 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:17:25 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:25 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:17:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:17:25 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:17:25 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:25 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:17:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:17:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:25 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:17:25 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:25 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:17:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:17:25 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:17:25 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:25 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:17:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:17:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:26 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:17:26 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:26 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:17:26 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:17:26 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:17:26 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:17:26 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:17:26 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:26 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:17:26 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:17:26 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:17:26 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:17:26 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:17:26 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:17:26 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:17:27 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:27 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:17:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:17:27 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:17:27 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:27 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:17:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:17:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:17:27 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:27 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:17:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:17:27 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:17:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:17:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:17:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:17:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:17:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:17:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:17:27 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:17:27 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:17:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:17:54 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:17:54 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:17:54 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[6]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:17:54 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[6]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:54 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[6]/td//i[contains(@class,"edit")] found." 2021-12-14 02:17:54 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[6]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:54 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[6]/td//i[contains(@class,"edit")] found." 2021-12-14 02:17:54 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[6]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:17:54 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[6]/td//i[contains(@class,"edit")]" 2021-12-14 02:17:54 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[6]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:17:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:17:54 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:54 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:17:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:17:54 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:17:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:17:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:17:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:17:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:17:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:17:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:17:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:17:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:17:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:17:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:17:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:17:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:17:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:17:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:17:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:56 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:17:56 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:56 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:17:56 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:17:56 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:17:56 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:17:56 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:17:56 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:56 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:17:56 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:17:56 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:17:56 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:17:56 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:17:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:17:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:17:56 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:56 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:17:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:17:56 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:17:56 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:56 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:17:57 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:17:57 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:17:57 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:57 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:17:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:17:57 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:17:57 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:17:57 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:17:57 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:17:57 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:17:57 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:17:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:17:57 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:17:57 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:17:57 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:17:57 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:18:24 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:18:24 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:18:24 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:18:24 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[7]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:18:24 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[7]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:24 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[7]/td//i[contains(@class,"edit")] found." 2021-12-14 02:18:24 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[7]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:24 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[7]/td//i[contains(@class,"edit")] found." 2021-12-14 02:18:24 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[7]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:18:24 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[7]/td//i[contains(@class,"edit")]" 2021-12-14 02:18:24 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[7]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:18:24 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:18:24 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:25 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:18:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:18:25 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:18:25 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:25 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:18:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:18:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:25 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:18:25 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:25 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:18:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:18:25 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:18:25 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:25 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:18:25 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:18:25 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:25 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:18:25 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:25 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:18:25 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:18:25 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:18:25 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:25 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:18:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:18:27 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:27 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:18:27 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:27 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:18:27 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:18:27 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:18:27 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:18:27 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:18:27 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:27 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:18:27 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:18:27 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:18:27 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:18:27 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:18:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:18:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:18:27 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:27 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:18:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:18:27 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:18:27 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:27 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:18:27 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:18:27 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:27 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:18:27 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:27 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:18:27 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:18:27 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:18:27 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:18:27 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:18:27 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:27 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:18:27 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:18:27 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:18:27 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:18:28 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:18:28 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:18:54 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:18:54 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:18:54 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:18:54 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[8]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:18:54 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[8]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:54 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[8]/td//i[contains(@class,"edit")] found." 2021-12-14 02:18:54 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[8]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:54 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[8]/td//i[contains(@class,"edit")] found." 2021-12-14 02:18:54 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[8]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:18:54 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[8]/td//i[contains(@class,"edit")]" 2021-12-14 02:18:54 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[8]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:18:54 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:18:54 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:54 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:18:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:18:54 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:18:54 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:54 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:18:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:18:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:18:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:18:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:18:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:18:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:18:54 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:18:54 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:54 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:18:54 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:54 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:18:54 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:18:54 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:18:54 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:54 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:18:56 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:18:56 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:56 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:18:56 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:56 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:18:56 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:18:56 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:18:56 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:18:56 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:18:56 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:56 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:18:56 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:18:56 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:18:56 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:18:56 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:18:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:18:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:56 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:18:56 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:56 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:18:56 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:18:56 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:18:56 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:56 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:18:56 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:18:56 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:57 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:18:57 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:57 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:18:57 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:18:57 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:18:57 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:18:57 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:18:57 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:18:57 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:18:57 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:18:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:18:57 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:18:57 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:18:57 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:18:57 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:19:25 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:19:25 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:19:26 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:19:26 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[9]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:19:26 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[9]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:19:26 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[9]/td//i[contains(@class,"edit")] found." 2021-12-14 02:19:26 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[9]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:26 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[9]/td//i[contains(@class,"edit")] found." 2021-12-14 02:19:26 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[9]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:19:26 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[9]/td//i[contains(@class,"edit")]" 2021-12-14 02:19:26 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[9]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:19:26 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:19:26 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:19:26 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:19:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:19:26 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:19:26 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:26 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:19:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:19:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:19:26 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:19:26 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:26 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:19:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:19:26 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:19:26 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:26 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:19:26 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:19:26 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:19:26 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:19:26 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:26 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:19:26 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:19:26 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:19:26 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:26 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:19:28 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:19:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:19:28 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:19:28 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:28 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:19:28 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:19:28 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:19:28 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:19:28 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:19:28 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:28 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:19:28 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:19:28 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:19:28 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:19:28 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:19:28 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:19:28 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:19:28 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:19:28 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:28 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:19:28 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:19:28 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:19:28 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:28 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:19:29 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:19:29 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:19:29 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:19:29 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:29 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:19:29 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:19:29 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:19:29 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:19:29 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:19:29 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:19:29 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:19:29 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:29 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:19:29 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:19:29 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:19:29 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:19:29 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:19:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:19:57 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:19:57 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:19:57 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[10]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:19:57 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[10]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:19:57 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[10]/td//i[contains(@class,"edit")] found." 2021-12-14 02:19:57 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[10]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:57 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[10]/td//i[contains(@class,"edit")] found." 2021-12-14 02:19:57 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[10]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:19:57 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[10]/td//i[contains(@class,"edit")]" 2021-12-14 02:19:57 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[10]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:19:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:19:57 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:19:57 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:19:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:19:57 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:19:57 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:57 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:19:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:19:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:19:57 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:19:57 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:57 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:19:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:19:57 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:19:57 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:57 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:19:57 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:19:57 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:19:57 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:19:57 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:57 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:19:57 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:19:57 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:19:57 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:57 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:19:59 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:19:59 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:19:59 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:19:59 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:19:59 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:19:59 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:19:59 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:20:00 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:20:00 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:20:00 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:00 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:20:00 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:20:00 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:20:00 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:20:00 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:20:00 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:20:00 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:00 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:20:00 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:00 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:20:00 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:20:00 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:20:00 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:00 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:20:00 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:20:00 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:00 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:20:00 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:00 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:20:00 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:20:00 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:20:00 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:20:00 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:20:00 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:00 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:20:00 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:20:00 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:20:00 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:20:00 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:20:00 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:20:27 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:20:27 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:20:27 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:20:27 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[11]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:20:27 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[11]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:27 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[11]/td//i[contains(@class,"edit")] found." 2021-12-14 02:20:27 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[11]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:27 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[11]/td//i[contains(@class,"edit")] found." 2021-12-14 02:20:27 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[11]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:20:27 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[11]/td//i[contains(@class,"edit")]" 2021-12-14 02:20:27 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[11]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:20:27 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:20:27 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:28 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:20:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:20:28 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:20:28 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:28 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:20:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:20:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:20:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:20:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:20:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:20:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:20:28 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:20:28 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:28 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:20:28 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:28 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:20:28 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:20:28 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:20:28 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:28 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:20:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:20:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:30 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:20:30 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:30 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:20:30 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:20:30 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:20:30 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:20:30 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:20:30 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:30 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:20:30 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:20:30 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:20:30 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:20:30 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:20:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:20:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:20:30 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:30 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:20:30 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:20:30 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:20:30 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:30 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:20:30 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:20:30 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:30 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:20:30 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:31 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:20:31 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:20:31 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:20:31 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:20:31 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:20:31 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:31 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:20:31 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:20:31 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:20:31 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:20:31 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:20:31 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:20:57 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:20:57 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:20:57 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:20:57 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[12]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:20:57 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[12]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:57 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[12]/td//i[contains(@class,"edit")] found." 2021-12-14 02:20:57 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[12]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:57 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[12]/td//i[contains(@class,"edit")] found." 2021-12-14 02:20:57 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[12]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:20:57 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[12]/td//i[contains(@class,"edit")]" 2021-12-14 02:20:57 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[12]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:20:57 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:20:57 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:58 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:20:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:20:58 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:20:58 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:58 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:20:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:20:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:58 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:20:58 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:58 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:20:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:20:58 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:20:58 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:58 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:20:58 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:20:58 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:20:58 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:20:58 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:58 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:20:58 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:20:58 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:20:58 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:20:58 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:21:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:21:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:21:00 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:21:00 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:00 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:21:00 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:21:00 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:21:00 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:21:00 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:21:00 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:00 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:21:00 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:21:00 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:21:00 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:21:00 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:21:00 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:21:00 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:21:00 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:21:00 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:00 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:21:00 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:21:00 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:21:00 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:00 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:21:01 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:21:01 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:21:01 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:21:01 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:01 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:21:01 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:21:01 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:21:01 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:21:01 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:21:01 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:21:01 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:21:01 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:21:01 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:21:01 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:21:01 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:21:01 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:21:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:21:30 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:21:30 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:21:30 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[13]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:21:30 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[13]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:21:30 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[13]/td//i[contains(@class,"edit")] found." 2021-12-14 02:21:30 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[13]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:30 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[13]/td//i[contains(@class,"edit")] found." 2021-12-14 02:21:30 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[13]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:21:30 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[13]/td//i[contains(@class,"edit")]" 2021-12-14 02:21:30 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[13]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:21:30 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:21:30 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:21:30 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:21:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:21:30 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:21:30 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:30 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:21:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:21:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:21:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:21:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:21:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:21:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:21:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:21:30 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:21:30 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:21:30 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:21:30 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:30 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:21:30 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:21:30 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:21:30 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:30 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:21:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:21:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:21:32 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:21:32 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:32 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:21:32 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:21:32 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:21:33 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:21:33 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:21:33 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:33 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:21:33 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:21:33 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:21:33 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:21:33 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:21:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:21:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:21:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:21:33 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:33 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:21:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:21:33 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:21:33 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:33 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:21:33 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:21:33 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:21:33 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:21:33 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:33 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:21:33 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:21:33 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:21:33 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:21:33 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:21:33 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:21:33 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:21:33 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:21:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:21:33 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:21:33 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:21:33 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:21:33 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:22:00 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:22:00 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:22:00 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:22:00 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[14]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:22:00 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[14]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:00 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[14]/td//i[contains(@class,"edit")] found." 2021-12-14 02:22:00 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[14]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:00 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[14]/td//i[contains(@class,"edit")] found." 2021-12-14 02:22:00 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[14]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:22:00 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[14]/td//i[contains(@class,"edit")]" 2021-12-14 02:22:00 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[14]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:22:00 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:22:00 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:00 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:22:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:22:00 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:22:00 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:00 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:22:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:22:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:22:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:22:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:22:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:22:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:22:00 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:22:00 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:00 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:22:00 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:00 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:22:00 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:22:00 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:22:00 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:00 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:22:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:22:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:03 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:22:03 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:03 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:22:03 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:22:03 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:22:03 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:22:03 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:22:03 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:03 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:22:03 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:22:03 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:22:03 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:22:03 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:22:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:22:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:22:03 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:03 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:22:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:22:03 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:22:03 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:03 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:22:03 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:22:03 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:03 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:22:03 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:03 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:22:03 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:22:03 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:22:03 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:22:03 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:22:03 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:03 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:22:03 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:22:03 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:22:03 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:22:03 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:22:03 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:22:30 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:22:30 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:22:30 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:22:30 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[15]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:22:30 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[15]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:31 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[15]/td//i[contains(@class,"edit")] found." 2021-12-14 02:22:31 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[15]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:31 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[15]/td//i[contains(@class,"edit")] found." 2021-12-14 02:22:31 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[15]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:22:31 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[15]/td//i[contains(@class,"edit")]" 2021-12-14 02:22:31 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[15]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:22:31 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:22:31 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:31 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:22:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:22:31 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:22:31 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:31 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:22:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:22:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:22:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:22:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:22:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:22:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:22:31 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:22:31 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:31 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:22:31 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:31 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:22:31 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:22:31 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:22:31 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:31 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:22:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:22:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:33 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:22:33 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:33 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:22:33 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:22:33 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:22:33 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:22:33 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:22:33 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:33 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:22:33 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:22:34 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:22:34 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:22:34 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:22:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:22:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:22:34 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:34 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:22:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:22:34 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:22:34 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:34 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:22:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:22:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:22:34 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:34 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:22:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:22:34 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:22:34 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:22:34 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:22:34 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:22:34 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:22:34 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:22:34 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:22:34 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:22:34 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:22:34 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:22:34 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:23:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:23:01 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:23:01 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:23:01 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[16]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:23:01 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[16]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:01 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[16]/td//i[contains(@class,"edit")] found." 2021-12-14 02:23:01 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[16]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:01 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[16]/td//i[contains(@class,"edit")] found." 2021-12-14 02:23:01 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[16]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:23:01 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[16]/td//i[contains(@class,"edit")]" 2021-12-14 02:23:01 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[16]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:23:01 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:23:01 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:23:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:23:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:23:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:23:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:23:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:23:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:23:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:23:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:23:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:23:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:23:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:23:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:23:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:23:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:23:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:23:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:23:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:04 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:23:04 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:04 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:23:04 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:23:04 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:23:04 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:23:04 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:23:04 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:04 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:23:04 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:23:04 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:23:04 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:23:04 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:23:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:23:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:23:04 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:04 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:23:04 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:23:04 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:23:04 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:04 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:23:04 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:23:04 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:04 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:23:05 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:05 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:23:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:23:05 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:23:05 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:23:05 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:23:05 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:05 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:23:05 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:23:05 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:23:05 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:23:05 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:23:05 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:23:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:23:31 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:23:31 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:23:31 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[17]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:23:31 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[17]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:32 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[17]/td//i[contains(@class,"edit")] found." 2021-12-14 02:23:32 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[17]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:32 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[17]/td//i[contains(@class,"edit")] found." 2021-12-14 02:23:32 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[17]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:23:32 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[17]/td//i[contains(@class,"edit")]" 2021-12-14 02:23:32 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[17]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:23:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:23:32 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:32 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:23:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:23:32 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:23:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:23:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:23:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:23:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:23:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:23:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:23:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:23:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:23:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:23:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:23:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:23:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:23:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:23:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:23:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:23:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:34 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:23:34 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:23:34 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:23:34 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:23:34 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:23:34 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:34 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:23:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:23:35 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:23:35 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:23:35 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:23:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:23:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:23:35 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:35 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:23:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:23:35 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:23:35 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:35 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:23:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:23:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:23:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:23:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:23:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:23:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:23:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:23:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:23:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:23:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:23:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:23:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:23:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:23:35 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:23:35 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:24:01 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:24:01 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:24:01 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:24:01 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[18]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:24:01 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[18]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:01 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[18]/td//i[contains(@class,"edit")] found." 2021-12-14 02:24:01 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[18]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:01 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[18]/td//i[contains(@class,"edit")] found." 2021-12-14 02:24:01 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[18]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:24:01 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[18]/td//i[contains(@class,"edit")]" 2021-12-14 02:24:02 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[18]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:24:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:24:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:02 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:24:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:24:02 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:24:02 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:02 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:24:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:24:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:24:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:24:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:24:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:24:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:24:02 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:24:02 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:02 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:24:02 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:02 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:24:02 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:24:02 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:24:02 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:02 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:24:04 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:24:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:04 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:24:04 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:04 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:24:04 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:24:04 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:24:04 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:24:04 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:24:04 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:04 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:24:04 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:24:04 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:24:04 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:24:05 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:24:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:24:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:24:05 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:05 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:24:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:24:05 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:24:05 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:05 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:24:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:24:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:24:05 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:05 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:24:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:24:05 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:24:05 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:24:05 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:24:05 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:05 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:24:05 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:24:05 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:24:05 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:24:05 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:24:05 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:24:31 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:24:31 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:24:31 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:24:31 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[19]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:24:31 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[19]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:31 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[19]/td//i[contains(@class,"edit")] found." 2021-12-14 02:24:31 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[19]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:32 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[19]/td//i[contains(@class,"edit")] found." 2021-12-14 02:24:32 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[19]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:24:32 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[19]/td//i[contains(@class,"edit")]" 2021-12-14 02:24:32 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[19]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:24:32 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:24:32 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:32 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:24:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:24:32 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:24:32 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:32 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:24:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:24:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:24:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:24:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:24:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:24:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:24:32 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:24:32 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:32 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:24:32 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:32 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:24:32 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:24:32 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:24:32 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:32 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:24:34 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:24:34 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:34 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:24:34 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:34 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:24:34 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:24:34 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:24:34 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:24:34 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:24:34 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:34 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:24:34 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:24:34 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:24:34 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:24:34 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:24:34 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:24:34 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:34 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:24:34 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:34 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:24:34 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:24:34 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:24:34 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:35 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:24:35 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:24:35 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:35 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:24:35 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:35 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:24:35 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:24:35 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:24:35 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:24:35 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:24:35 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:24:35 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:24:35 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:24:35 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:24:35 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:24:35 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:24:35 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:24:35 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:25:02 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:25:02 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:25:02 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:25:02 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[20]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:25:02 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[20]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:02 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[20]/td//i[contains(@class,"edit")] found." 2021-12-14 02:25:02 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[20]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:02 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[20]/td//i[contains(@class,"edit")] found." 2021-12-14 02:25:02 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[20]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:25:02 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[20]/td//i[contains(@class,"edit")]" 2021-12-14 02:25:02 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[20]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:25:02 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:25:02 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:25:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:25:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:25:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:25:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:25:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:25:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:25:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:25:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:25:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:25:03 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:25:03 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:03 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:25:03 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:03 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:25:03 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:25:03 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:25:03 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:03 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:25:05 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:25:05 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:05 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:25:05 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:05 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:25:05 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:25:05 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:25:05 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:25:05 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:25:05 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:05 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:25:05 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:25:05 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:25:05 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:25:05 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:25:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:25:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:25:05 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:05 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:25:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:25:05 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:25:05 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:05 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:25:05 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:25:05 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:05 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:25:05 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:05 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:25:05 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:25:05 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:25:05 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:25:05 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:25:05 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:05 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:25:05 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:25:05 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:25:05 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:25:06 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:25:06 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:25:33 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:25:33 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:25:33 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:25:33 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[21]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:25:33 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[21]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:33 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[21]/td//i[contains(@class,"edit")] found." 2021-12-14 02:25:33 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[21]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:33 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[21]/td//i[contains(@class,"edit")] found." 2021-12-14 02:25:33 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[21]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:25:33 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[21]/td//i[contains(@class,"edit")]" 2021-12-14 02:25:33 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[21]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:25:33 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:25:33 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:33 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:25:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:25:33 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:25:33 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:33 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:25:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:25:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:25:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:25:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:25:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:25:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:33 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:25:33 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:25:33 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:33 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:25:33 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:33 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:25:33 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:25:33 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:25:33 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:33 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:25:36 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:25:36 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:36 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:25:36 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:36 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:25:36 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:25:36 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:25:36 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:25:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:25:36 - BaseElement - INFO - Waiting for element //span[text()="Read and write"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:36 - BaseElement - INFO - Element //span[text()="Read and write"]/.. found." 2021-12-14 02:25:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read and write"]/.." 2021-12-14 02:25:36 - BaseElement - INFO - Element with xpath //span[text()="Read and write"]/.. was clicked" 2021-12-14 02:25:36 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:25:36 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:25:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:25:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:25:36 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:36 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:25:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:25:36 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:25:36 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:36 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:25:36 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:25:36 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:36 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:25:36 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:36 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:25:36 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:25:36 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:25:36 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:25:36 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:25:36 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:25:36 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:25:36 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:25:36 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:25:36 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:25:36 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:25:37 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:25:37 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:26:03 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 02:26:03 - AssetTemplatesPage - INFO - Trying to find component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:26:03 - AssetTemplatesPage - INFO - Found component ("//table[contains(@class,'small')]", 'Table')" 2021-12-14 02:26:03 - Table - INFO - Trying to find element ('//table[contains(@class,\'small\')]/tbody/tr[22]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:26:03 - Table - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[22]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:26:03 - Table - INFO - Element //table[contains(@class,'small')]/tbody/tr[22]/td//i[contains(@class,"edit")] found." 2021-12-14 02:26:03 - Button - INFO - Waiting for element //table[contains(@class,'small')]/tbody/tr[22]/td//i[contains(@class,"edit")] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:03 - Button - INFO - Element //table[contains(@class,'small')]/tbody/tr[22]/td//i[contains(@class,"edit")] found." 2021-12-14 02:26:03 - Table - INFO - Found element ('//table[contains(@class,\'small\')]/tbody/tr[22]/td//i[contains(@class,"edit")]', 'Button')" 2021-12-14 02:26:03 - Button - INFO - Trying to click element with xpath //table[contains(@class,'small')]/tbody/tr[22]/td//i[contains(@class,"edit")]" 2021-12-14 02:26:03 - Button - INFO - Element with xpath //table[contains(@class,'small')]/tbody/tr[22]/td//i[contains(@class,"edit")] was clicked" 2021-12-14 02:26:03 - AddDatapointPropertyModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:26:03 - AddDatapointPropertyModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:26:03 - AddDatapointPropertyModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:26:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:03 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:26:03 - AddDatapointPropertyModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 02:26:03 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 02:26:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:26:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:26:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:26:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:26:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:26:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:26:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:26:04 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:26:04 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:26:04 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:26:04 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:04 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:26:04 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:26:04 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:26:04 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:04 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:26:06 - AddDatapointPropertyModal - INFO - Trying to find element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:26:06 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:26:06 - AddDatapointPropertyModal - INFO - Element //*[@id="direction"] found." 2021-12-14 02:26:06 - Dropdown - INFO - Waiting for element //*[@id="direction"] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:06 - Dropdown - INFO - Element //*[@id="direction"] found." 2021-12-14 02:26:06 - AddDatapointPropertyModal - INFO - Found element ('//*[@id="direction"]', 'Dropdown')" 2021-12-14 02:26:06 - Dropdown - INFO - Trying to click element with xpath //*[@id="direction"]" 2021-12-14 02:26:06 - Dropdown - INFO - Element with xpath //*[@id="direction"] was clicked" 2021-12-14 02:26:06 - Dropdown - INFO - Trying to get base element with xpath //*[@id="direction"]" 2021-12-14 02:26:06 - BaseElement - INFO - Waiting for element //span[text()="Read only"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:06 - BaseElement - INFO - Element //span[text()="Read only"]/.. found." 2021-12-14 02:26:06 - BaseElement - INFO - Trying to click element with xpath //span[text()="Read only"]/.." 2021-12-14 02:26:06 - BaseElement - INFO - Element with xpath //span[text()="Read only"]/.. was clicked" 2021-12-14 02:26:06 - AddDatapointPropertyModal - INFO - Trying to find component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:26:06 - AddDatapointPropertyModal - INFO - Found component ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Tags')" 2021-12-14 02:26:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:26:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 15s" 2021-12-14 02:26:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:26:06 - Input - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:06 - Input - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../.. found." 2021-12-14 02:26:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..", 'Input')" 2021-12-14 02:26:06 - Input - INFO - Trying to get base element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../.." 2021-12-14 02:26:06 - BaseElement - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:06 - BaseElement - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//input found." 2021-12-14 02:26:06 - Tags - INFO - Trying to find element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:26:06 - Tags - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 15s" 2021-12-14 02:26:06 - Tags - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:26:06 - Button - INFO - Waiting for element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:06 - Button - INFO - Element //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button found." 2021-12-14 02:26:06 - Tags - INFO - Found element ("//div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button", 'Button')" 2021-12-14 02:26:06 - Button - INFO - Trying to click element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button" 2021-12-14 02:26:07 - Button - INFO - Element with xpath //div[@class='ReactModalPortal']//*[text()='Search tags']/../..//button was clicked" 2021-12-14 02:26:07 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:26:07 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:26:07 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:26:07 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:07 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 02:26:07 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 02:26:07 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 02:26:07 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 02:26:07 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 02:26:37 - AddDatapointPropertyModal - INFO - Trying to find element ("//*[@id='name']", 'Input')" 2021-12-14 02:26:37 - AddDatapointPropertyModal - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:26:37 - AddDatapointPropertyModal - INFO - Element //*[@id='name'] found." 2021-12-14 02:26:37 - Input - INFO - Waiting for element //*[@id='name'] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:37 - Input - INFO - Element //*[@id='name'] found." 2021-12-14 02:26:37 - AddDatapointPropertyModal - INFO - Found element ("//*[@id='name']", 'Input')" 2021-12-14 02:26:37 - Input - INFO - Trying to get base element with xpath //*[@id='name']" 2021-12-14 02:26:37 - BaseElement - INFO - Waiting for element //*[@id='name']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:37 - BaseElement - INFO - Element //*[@id='name']//input found." 2021-12-14 02:26:37 - AddDatapointPropertyModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 02:26:37 - AddDatapointPropertyModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 02:26:37 - AddDatapointPropertyModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 02:26:37 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 02:26:37 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()] found." 2021-12-14 02:26:37 - AddDatapointPropertyModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]', 'Button')" 2021-12-14 02:26:37 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "discreetblack")])[last()]" 2021-12-14 02:26:38 - Button - WARNING - StaleElementReferenceException occurred. Trying to refresh driver." -----------------------------Captured log teardown------------------------------ 2021-12-14 02:26:38 - Test Logger - INFO - Screenshot saved: D:\ThesisTestAutomation\reports\2021-12-13-23-52-03\screenshots\test_edycja_wszystkich_properties.png" | |||
| Passed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_logowania[Admin-a--Password must have at least 10 characters-] | 5.26 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-13 23:59:20 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:20 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:20 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:20 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:20 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:20 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:20 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-13 23:59:20 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:20 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:20 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:20 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:20 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:20 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:20 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:20 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-13 23:59:20 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:20 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-13 23:59:20 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:20 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:20 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:20 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:20 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:20 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:20 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:20 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:20 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-13 23:59:20 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:20 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:20 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:20 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:20 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:20 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:20 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-13 23:59:21 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-13 23:59:21 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:21 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:21 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:21 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:21 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:21 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:21 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:21 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:21 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] found." 2021-12-13 23:59:21 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:59:21 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] found." 2021-12-13 23:59:21 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] was found." 2021-12-13 23:59:21 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='login-screen_password']/div[contains(@class,"validation")]" | |||
| Passed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_logowania[Admin-abcdefghij--Password must have at least one upper case letter-] | 5.46 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-13 23:59:25 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:25 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:25 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:25 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:25 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:25 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:25 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-13 23:59:26 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:26 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:26 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:26 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:26 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:26 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:26 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:26 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-13 23:59:26 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:26 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-13 23:59:26 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:26 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:26 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:26 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:26 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:26 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:26 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:26 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:26 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-13 23:59:26 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:26 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:26 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:26 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:26 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:26 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:26 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-13 23:59:26 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-13 23:59:26 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:26 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:26 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:26 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:26 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:26 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:26 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:26 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:26 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] found." 2021-12-13 23:59:26 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:59:26 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] found." 2021-12-13 23:59:26 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] was found." 2021-12-13 23:59:26 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='login-screen_password']/div[contains(@class,"validation")]" | |||
| Passed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_logowania[Admin-ABCDEFGHIJ--Password must have at least one lower case letter-] | 5.42 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-13 23:59:31 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:31 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:31 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:31 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:31 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:31 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:31 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-13 23:59:31 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:31 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:31 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:31 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:31 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:31 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:31 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:31 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-13 23:59:31 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:31 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-13 23:59:31 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:31 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:31 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:31 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:31 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:31 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:31 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:31 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:31 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-13 23:59:31 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:31 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:31 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:31 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:31 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:31 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:31 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-13 23:59:31 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-13 23:59:31 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:31 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:32 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:32 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:32 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:32 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:32 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:32 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:32 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] found." 2021-12-13 23:59:32 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:59:32 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] found." 2021-12-13 23:59:32 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] was found." 2021-12-13 23:59:32 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='login-screen_password']/div[contains(@class,"validation")]" | |||
| Passed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_logowania[Admin-Abcdefghij--Password must have at least one digit-] | 5.41 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-13 23:59:36 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:36 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:36 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:36 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:36 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:36 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:36 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-13 23:59:36 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:36 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:36 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:36 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:36 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:36 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:36 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:36 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-13 23:59:36 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:36 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-13 23:59:36 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:36 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:37 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:37 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:37 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:37 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:37 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:37 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:37 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-13 23:59:37 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:37 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:37 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:37 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:37 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:37 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:37 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-13 23:59:37 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-13 23:59:37 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:37 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:37 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:37 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:37 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:37 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:37 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:37 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:37 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] found." 2021-12-13 23:59:37 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:59:37 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] found." 2021-12-13 23:59:37 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] was found." 2021-12-13 23:59:37 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='login-screen_password']/div[contains(@class,"validation")]" | |||
| Passed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_logowania[Admin-Abcdefghij1--Password must have at least one special character-] | 6.02 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-13 23:59:42 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:42 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:42 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:42 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:42 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:42 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:42 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-13 23:59:42 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:42 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:42 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:42 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:42 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:42 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:42 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:42 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-13 23:59:42 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:42 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-13 23:59:42 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:42 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:43 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:43 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:43 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:43 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:43 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:43 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:43 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-13 23:59:43 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:43 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:43 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:43 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:43 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:43 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:43 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-13 23:59:43 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-13 23:59:43 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:43 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:43 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:43 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:43 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:43 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:43 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:43 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:43 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] found." 2021-12-13 23:59:43 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-13 23:59:43 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] found." 2021-12-13 23:59:43 - BaseElement - INFO - Element //span[@id='login-screen_password']/div[contains(@class,"validation")] was found." 2021-12-13 23:59:43 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='login-screen_password']/div[contains(@class,"validation")]" | |||
| Passed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_logowania[AA-Smartspaces1!---Invalid credentials] | 6.09 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-13 23:59:54 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:54 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:54 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:54 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:54 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:54 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:54 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-13 23:59:54 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:54 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:54 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:54 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:54 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:54 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-13 23:59:54 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-13 23:59:54 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-13 23:59:54 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:54 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-13 23:59:54 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:54 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:54 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:54 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:54 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-13 23:59:54 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-13 23:59:54 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-13 23:59:54 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:54 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-13 23:59:54 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:54 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:54 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:54 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:54 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-13 23:59:54 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-13 23:59:54 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-13 23:59:55 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-13 23:59:55 - LoginPage - INFO - Trying to find element ('//p', 'Base')" 2021-12-13 23:59:55 - LoginPage - INFO - Waiting for element //p with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:55 - LoginPage - INFO - Element //p found." 2021-12-13 23:59:55 - BaseElement - INFO - Waiting for element //p with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:55 - BaseElement - INFO - Element //p found." 2021-12-13 23:59:55 - LoginPage - INFO - Found element ('//p', 'Base')" 2021-12-13 23:59:55 - BaseElement - INFO - Waiting for element //p with poll frequency 0.1s and timeout 1s" 2021-12-13 23:59:55 - BaseElement - INFO - Element //p found." 2021-12-13 23:59:55 - BaseElement - INFO - Element //p was found." 2021-12-13 23:59:55 - LoginPage - INFO - Trying to find element ('//p', 'Base')" 2021-12-13 23:59:55 - LoginPage - INFO - Waiting for element //p with poll frequency 0.1s and timeout 15s" 2021-12-13 23:59:55 - LoginPage - INFO - Element //p found." 2021-12-13 23:59:55 - BaseElement - INFO - Waiting for element //p with poll frequency 0.1s and timeout 5s" 2021-12-13 23:59:55 - BaseElement - INFO - Element //p found." 2021-12-13 23:59:55 - LoginPage - INFO - Found element ('//p', 'Base')" 2021-12-13 23:59:55 - BaseElement - INFO - Trying to get text of element with xpath //p" | |||
| Passed | tests/Login_tests/functional_tests/test_login.py::test_logowanie_sie_bez_zainicjowanego_uzytkownika | 8.92 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-14 00:00:00 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:00 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:00 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:00 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:00 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:00 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:00 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:00:00 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:01 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:00:01 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:01 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:00:01 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:01 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:00:01 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:00:01 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:00:01 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:01 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:00:01 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:00:01 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:01 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:00:01 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:01 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:00:01 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:00:01 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:00:01 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:01 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:00:01 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:02 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:02 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:02 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:02 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:02 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:02 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:00:02 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:00:02 - LoginPage - INFO - Trying to find element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-14 00:00:02 - LoginPage - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:02 - LoginPage - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:02 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:02 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:02 - LoginPage - INFO - Found element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-14 00:00:02 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.5s and timeout 5s" 2021-12-14 00:00:02 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:02 - LoginPage - INFO - Trying to find element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-14 00:00:02 - LoginPage - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:02 - LoginPage - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:02 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:02 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:02 - LoginPage - INFO - Found element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-14 00:00:02 - BaseElement - INFO - Waiting for element to disappear //div[contains(@class,'LoadingIndicator')] with poll frequency 0.5 and timeout 15" 2021-12-14 00:00:04 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] disappeared." | |||
| Passed | tests/Login_tests/functional_tests/test_login.py::test_zatwierdzanie_zasad_i_warunkow | 17.44 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-14 00:00:08 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:08 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:09 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:09 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:09 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:09 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:09 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:00:09 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:09 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:00:09 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:09 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:00:09 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:09 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:00:09 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:00:09 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:00:09 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:09 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:00:09 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:00:09 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:09 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:00:09 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:09 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:00:09 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:00:09 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:00:09 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:09 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:00:09 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:09 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:09 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:09 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:09 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:09 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:09 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:00:10 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:00:10 - TermsAndConditionsPage - INFO - Trying to find element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-14 00:00:10 - TermsAndConditionsPage - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:10 - TermsAndConditionsPage - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:10 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:10 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:10 - TermsAndConditionsPage - INFO - Found element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-14 00:00:10 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.5s and timeout 5s" 2021-12-14 00:00:10 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:10 - TermsAndConditionsPage - INFO - Trying to find element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-14 00:00:10 - TermsAndConditionsPage - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:10 - TermsAndConditionsPage - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:10 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:10 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:10 - TermsAndConditionsPage - INFO - Found element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-14 00:00:10 - BaseElement - INFO - Waiting for element to disappear //div[contains(@class,'LoadingIndicator')] with poll frequency 0.5 and timeout 15" 2021-12-14 00:00:10 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] disappeared." 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Trying to find element ("//div[@id='terms-and-conditions-textbox']", 'Base')" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Waiting for element //div[@id='terms-and-conditions-textbox'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Element //div[@id='terms-and-conditions-textbox'] found." 2021-12-14 00:00:11 - BaseElement - INFO - Waiting for element //div[@id='terms-and-conditions-textbox'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:11 - BaseElement - INFO - Element //div[@id='terms-and-conditions-textbox'] found." 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Found element ("//div[@id='terms-and-conditions-textbox']", 'Base')" 2021-12-14 00:00:11 - BaseElement - INFO - Trying to click element with xpath //div[@id='terms-and-conditions-textbox']" 2021-12-14 00:00:11 - BaseElement - INFO - Element with xpath //div[@id='terms-and-conditions-textbox'] was clicked" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Trying to find element ("//div[@id='privacy-policy-textbox']", 'Base')" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Waiting for element //div[@id='privacy-policy-textbox'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Element //div[@id='privacy-policy-textbox'] found." 2021-12-14 00:00:11 - BaseElement - INFO - Waiting for element //div[@id='privacy-policy-textbox'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:11 - BaseElement - INFO - Element //div[@id='privacy-policy-textbox'] found." 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Found element ("//div[@id='privacy-policy-textbox']", 'Base')" 2021-12-14 00:00:11 - BaseElement - INFO - Trying to click element with xpath //div[@id='privacy-policy-textbox']" 2021-12-14 00:00:11 - BaseElement - INFO - Element with xpath //div[@id='privacy-policy-textbox'] was clicked" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Trying to find element ("//input[@id='terms-and-conditions-checkbox']", 'Base')" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Waiting for element //input[@id='terms-and-conditions-checkbox'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Element //input[@id='terms-and-conditions-checkbox'] found." 2021-12-14 00:00:11 - BaseElement - INFO - Waiting for element //input[@id='terms-and-conditions-checkbox'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:11 - BaseElement - INFO - Element //input[@id='terms-and-conditions-checkbox'] found." 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Found element ("//input[@id='terms-and-conditions-checkbox']", 'Base')" 2021-12-14 00:00:11 - BaseElement - INFO - Trying to click element with xpath //input[@id='terms-and-conditions-checkbox']" 2021-12-14 00:00:11 - BaseElement - INFO - Element with xpath //input[@id='terms-and-conditions-checkbox'] was clicked" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Trying to find element ("//input[@id='policy-checkbox']", 'Base')" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Waiting for element //input[@id='policy-checkbox'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Element //input[@id='policy-checkbox'] found." 2021-12-14 00:00:11 - BaseElement - INFO - Waiting for element //input[@id='policy-checkbox'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:11 - BaseElement - INFO - Element //input[@id='policy-checkbox'] found." 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Found element ("//input[@id='policy-checkbox']", 'Base')" 2021-12-14 00:00:11 - BaseElement - INFO - Trying to click element with xpath //input[@id='policy-checkbox']" 2021-12-14 00:00:11 - BaseElement - INFO - Element with xpath //input[@id='policy-checkbox'] was clicked" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Trying to find element ('//*[@id="terms-and-conditions-accept-button"]', 'Button')" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Waiting for element //*[@id="terms-and-conditions-accept-button"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Element //*[@id="terms-and-conditions-accept-button"] found." 2021-12-14 00:00:11 - Button - INFO - Waiting for element //*[@id="terms-and-conditions-accept-button"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:11 - Button - INFO - Element //*[@id="terms-and-conditions-accept-button"] found." 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Found element ('//*[@id="terms-and-conditions-accept-button"]', 'Button')" 2021-12-14 00:00:11 - Button - INFO - Trying to click element with xpath //*[@id="terms-and-conditions-accept-button"]" 2021-12-14 00:00:11 - Button - INFO - Element with xpath //*[@id="terms-and-conditions-accept-button"] was clicked" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Trying to find element ("//button[@id='initialize-system_submit']", 'Button')" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Waiting for element //button[@id='initialize-system_submit'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Element //button[@id='initialize-system_submit'] found." 2021-12-14 00:00:11 - Button - INFO - Waiting for element //button[@id='initialize-system_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:11 - Button - INFO - Element //button[@id='initialize-system_submit'] found." 2021-12-14 00:00:11 - TermsAndConditionsPage - INFO - Found element ("//button[@id='initialize-system_submit']", 'Button')" 2021-12-14 00:00:11 - Button - INFO - Waiting for element //button[@id='initialize-system_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:11 - Button - INFO - Element //button[@id='initialize-system_submit'] found." 2021-12-14 00:00:11 - Button - INFO - Trying to click element with xpath //button[@id='initialize-system_submit']" 2021-12-14 00:00:11 - Button - INFO - Element with xpath //button[@id='initialize-system_submit'] was clicked" 2021-12-14 00:00:11 - AccountInitializationPage - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:00:11 - AccountInitializationPage - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:11 - AccountInitializationPage - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:00:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:00:11 - AccountInitializationPage - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:00:11 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:11 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:00:11 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:00:11 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:21 - AccountInitializationPage - INFO - Element //span[@id='first_time_admin_login_company'] found." 2021-12-14 00:00:21 - Input - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:21 - Input - INFO - Element //span[@id='first_time_admin_login_company'] found." 2021-12-14 00:00:21 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:00:21 - Input - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 20s" 2021-12-14 00:00:21 - Input - INFO - Element //span[@id='first_time_admin_login_company'] found." | |||
| Passed | tests/Login_tests/functional_tests/test_login.py::test_wyswietlanie_bledow_podczas_inicjacji_bez_danych | 6.95 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-14 00:00:26 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:26 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:26 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:26 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:26 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:26 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:26 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:00:26 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:26 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:00:26 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:26 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:00:26 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:26 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:00:26 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:00:26 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:00:26 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:26 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:00:26 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:00:26 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:26 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:00:26 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:26 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:00:26 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:00:26 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:00:26 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:26 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:00:26 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:26 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:27 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:27 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:27 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:27 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:27 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:00:27 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:00:27 - AccountInitializationPage - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:00:27 - AccountInitializationPage - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:27 - AccountInitializationPage - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:00:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:00:27 - AccountInitializationPage - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:00:27 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:27 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:00:27 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:00:27 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:27 - AccountInitializationPage - INFO - Element //span[@id='first_time_admin_login_company'] found." 2021-12-14 00:00:27 - Input - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:27 - Input - INFO - Element //span[@id='first_time_admin_login_company'] found." 2021-12-14 00:00:27 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:00:27 - Input - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 20s" 2021-12-14 00:00:27 - Input - INFO - Element //span[@id='first_time_admin_login_company'] found." 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Trying to find element ("//button[@id='first_time_login_submit']", 'Button')" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Waiting for element //button[@id='first_time_login_submit'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Element //button[@id='first_time_login_submit'] found." 2021-12-14 00:00:28 - Button - INFO - Waiting for element //button[@id='first_time_login_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:28 - Button - INFO - Element //button[@id='first_time_login_submit'] found." 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Found element ("//button[@id='first_time_login_submit']", 'Button')" 2021-12-14 00:00:28 - Button - INFO - Trying to click element with xpath //button[@id='first_time_login_submit']" 2021-12-14 00:00:28 - Button - INFO - Element with xpath //button[@id='first_time_login_submit'] was clicked" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Element //span[@id='first_time_admin_login_company'] found." 2021-12-14 00:00:28 - Input - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:28 - Input - INFO - Element //span[@id='first_time_admin_login_company'] found." 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:00:28 - Input - INFO - Trying to get base element with xpath //span[@id='first_time_admin_login_company']" 2021-12-14 00:00:28 - BaseElement - INFO - Waiting for element //span[@id='first_time_admin_login_company']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_admin_login_company']/div[contains(@class,"validation")] found." 2021-12-14 00:00:28 - BaseElement - INFO - Waiting for element //span[@id='first_time_admin_login_company']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_admin_login_company']/div[contains(@class,"validation")] found." 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_admin_login_company']/div[contains(@class,"validation")] was found." 2021-12-14 00:00:28 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='first_time_admin_login_company']/div[contains(@class,"validation")]" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_login_firstname']", 'Input')" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_login_firstname'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Element //span[@id='first_time_login_firstname'] found." 2021-12-14 00:00:28 - Input - INFO - Waiting for element //span[@id='first_time_login_firstname'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:28 - Input - INFO - Element //span[@id='first_time_login_firstname'] found." 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_login_firstname']", 'Input')" 2021-12-14 00:00:28 - Input - INFO - Trying to get base element with xpath //span[@id='first_time_login_firstname']" 2021-12-14 00:00:28 - BaseElement - INFO - Waiting for element //span[@id='first_time_login_firstname']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_login_firstname']/div[contains(@class,"validation")] found." 2021-12-14 00:00:28 - BaseElement - INFO - Waiting for element //span[@id='first_time_login_firstname']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_login_firstname']/div[contains(@class,"validation")] found." 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_login_firstname']/div[contains(@class,"validation")] was found." 2021-12-14 00:00:28 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='first_time_login_firstname']/div[contains(@class,"validation")]" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_login_lastname']", 'Input')" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_login_lastname'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Element //span[@id='first_time_login_lastname'] found." 2021-12-14 00:00:28 - Input - INFO - Waiting for element //span[@id='first_time_login_lastname'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:28 - Input - INFO - Element //span[@id='first_time_login_lastname'] found." 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_login_lastname']", 'Input')" 2021-12-14 00:00:28 - Input - INFO - Trying to get base element with xpath //span[@id='first_time_login_lastname']" 2021-12-14 00:00:28 - BaseElement - INFO - Waiting for element //span[@id='first_time_login_lastname']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_login_lastname']/div[contains(@class,"validation")] found." 2021-12-14 00:00:28 - BaseElement - INFO - Waiting for element //span[@id='first_time_login_lastname']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_login_lastname']/div[contains(@class,"validation")] found." 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_login_lastname']/div[contains(@class,"validation")] was found." 2021-12-14 00:00:28 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='first_time_login_lastname']/div[contains(@class,"validation")]" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_login_email']", 'Input')" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_login_email'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Element //span[@id='first_time_login_email'] found." 2021-12-14 00:00:28 - Input - INFO - Waiting for element //span[@id='first_time_login_email'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:28 - Input - INFO - Element //span[@id='first_time_login_email'] found." 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_login_email']", 'Input')" 2021-12-14 00:00:28 - Input - INFO - Trying to get base element with xpath //span[@id='first_time_login_email']" 2021-12-14 00:00:28 - BaseElement - INFO - Waiting for element //span[@id='first_time_login_email']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_login_email']/div[contains(@class,"validation")] found." 2021-12-14 00:00:28 - BaseElement - INFO - Waiting for element //span[@id='first_time_login_email']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_login_email']/div[contains(@class,"validation")] found." 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_login_email']/div[contains(@class,"validation")] was found." 2021-12-14 00:00:28 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='first_time_login_email']/div[contains(@class,"validation")]" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_login_tel']", 'Input')" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_login_tel'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Element //span[@id='first_time_login_tel'] found." 2021-12-14 00:00:28 - Input - INFO - Waiting for element //span[@id='first_time_login_tel'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:28 - Input - INFO - Element //span[@id='first_time_login_tel'] found." 2021-12-14 00:00:28 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_login_tel']", 'Input')" 2021-12-14 00:00:28 - Input - INFO - Trying to get base element with xpath //span[@id='first_time_login_tel']" 2021-12-14 00:00:28 - BaseElement - INFO - Waiting for element //span[@id='first_time_login_tel']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_login_tel']/div[contains(@class,"validation")] found." 2021-12-14 00:00:28 - BaseElement - INFO - Waiting for element //span[@id='first_time_login_tel']/div[contains(@class,"validation")] with poll frequency 0.1s and timeout 1s" 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_login_tel']/div[contains(@class,"validation")] found." 2021-12-14 00:00:28 - BaseElement - INFO - Element //span[@id='first_time_login_tel']/div[contains(@class,"validation")] was found." 2021-12-14 00:00:28 - BaseElement - INFO - Trying to get text of element with xpath //span[@id='first_time_login_tel']/div[contains(@class,"validation")]" | |||
| Passed | tests/Login_tests/functional_tests/test_login.py::test_inicjacja_admina_po_logowaniu | 22.02 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-14 00:00:33 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:33 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:33 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:33 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:33 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:33 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:33 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:00:33 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:33 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:00:33 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:33 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:00:33 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:33 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:00:33 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:00:33 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:00:33 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:33 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:00:33 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:00:33 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:33 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:00:33 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:33 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:00:33 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:00:33 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:00:33 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:33 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:00:34 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:34 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:34 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:34 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:34 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:34 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:34 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:00:34 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:00:34 - AccountInitializationPage - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:00:34 - AccountInitializationPage - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:34 - AccountInitializationPage - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:00:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:00:34 - AccountInitializationPage - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:00:34 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:34 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:00:34 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:00:34 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Element //span[@id='first_time_admin_login_company'] found." 2021-12-14 00:00:35 - Input - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:35 - Input - INFO - Element //span[@id='first_time_admin_login_company'] found." 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:00:35 - Input - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 20s" 2021-12-14 00:00:35 - Input - INFO - Element //span[@id='first_time_admin_login_company'] found." 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Element //span[@id='first_time_admin_login_company'] found." 2021-12-14 00:00:35 - Input - INFO - Waiting for element //span[@id='first_time_admin_login_company'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:35 - Input - INFO - Element //span[@id='first_time_admin_login_company'] found." 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_admin_login_company']", 'Input')" 2021-12-14 00:00:35 - Input - INFO - Trying to get base element with xpath //span[@id='first_time_admin_login_company']" 2021-12-14 00:00:35 - BaseElement - INFO - Waiting for element //span[@id='first_time_admin_login_company']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:35 - BaseElement - INFO - Element //span[@id='first_time_admin_login_company']//input found." 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_login_firstname']", 'Input')" 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_login_firstname'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Element //span[@id='first_time_login_firstname'] found." 2021-12-14 00:00:35 - Input - INFO - Waiting for element //span[@id='first_time_login_firstname'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:35 - Input - INFO - Element //span[@id='first_time_login_firstname'] found." 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_login_firstname']", 'Input')" 2021-12-14 00:00:35 - Input - INFO - Trying to get base element with xpath //span[@id='first_time_login_firstname']" 2021-12-14 00:00:35 - BaseElement - INFO - Waiting for element //span[@id='first_time_login_firstname']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:35 - BaseElement - INFO - Element //span[@id='first_time_login_firstname']//input found." 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_login_lastname']", 'Input')" 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_login_lastname'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Element //span[@id='first_time_login_lastname'] found." 2021-12-14 00:00:35 - Input - INFO - Waiting for element //span[@id='first_time_login_lastname'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:35 - Input - INFO - Element //span[@id='first_time_login_lastname'] found." 2021-12-14 00:00:35 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_login_lastname']", 'Input')" 2021-12-14 00:00:35 - Input - INFO - Trying to get base element with xpath //span[@id='first_time_login_lastname']" 2021-12-14 00:00:35 - BaseElement - INFO - Waiting for element //span[@id='first_time_login_lastname']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:35 - BaseElement - INFO - Element //span[@id='first_time_login_lastname']//input found." 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_login_initials']", 'Input')" 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_login_initials'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Element //span[@id='first_time_login_initials'] found." 2021-12-14 00:00:36 - Input - INFO - Waiting for element //span[@id='first_time_login_initials'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:36 - Input - INFO - Element //span[@id='first_time_login_initials'] found." 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_login_initials']", 'Input')" 2021-12-14 00:00:36 - Input - INFO - Trying to get base element with xpath //span[@id='first_time_login_initials']" 2021-12-14 00:00:36 - BaseElement - INFO - Waiting for element //span[@id='first_time_login_initials']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:36 - BaseElement - INFO - Element //span[@id='first_time_login_initials']//input found." 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_login_email']", 'Input')" 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_login_email'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Element //span[@id='first_time_login_email'] found." 2021-12-14 00:00:36 - Input - INFO - Waiting for element //span[@id='first_time_login_email'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:36 - Input - INFO - Element //span[@id='first_time_login_email'] found." 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_login_email']", 'Input')" 2021-12-14 00:00:36 - Input - INFO - Trying to get base element with xpath //span[@id='first_time_login_email']" 2021-12-14 00:00:36 - BaseElement - INFO - Waiting for element //span[@id='first_time_login_email']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:36 - BaseElement - INFO - Element //span[@id='first_time_login_email']//input found." 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Trying to find element ("//span[@id='first_time_login_tel']", 'Input')" 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Waiting for element //span[@id='first_time_login_tel'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Element //span[@id='first_time_login_tel'] found." 2021-12-14 00:00:36 - Input - INFO - Waiting for element //span[@id='first_time_login_tel'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:36 - Input - INFO - Element //span[@id='first_time_login_tel'] found." 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Found element ("//span[@id='first_time_login_tel']", 'Input')" 2021-12-14 00:00:36 - Input - INFO - Trying to get base element with xpath //span[@id='first_time_login_tel']" 2021-12-14 00:00:36 - BaseElement - INFO - Waiting for element //span[@id='first_time_login_tel']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:36 - BaseElement - INFO - Element //span[@id='first_time_login_tel']//input found." 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Trying to find element ("//button[@id='first_time_login_submit']", 'Button')" 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Waiting for element //button[@id='first_time_login_submit'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Element //button[@id='first_time_login_submit'] found." 2021-12-14 00:00:36 - Button - INFO - Waiting for element //button[@id='first_time_login_submit'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:36 - Button - INFO - Element //button[@id='first_time_login_submit'] found." 2021-12-14 00:00:36 - AccountInitializationPage - INFO - Found element ("//button[@id='first_time_login_submit']", 'Button')" 2021-12-14 00:00:36 - Button - INFO - Trying to click element with xpath //button[@id='first_time_login_submit']" 2021-12-14 00:00:36 - Button - INFO - Element with xpath //button[@id='first_time_login_submit'] was clicked" 2021-12-14 00:00:36 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:00:36 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:45 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:00:45 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:45 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:00:45 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:00:45 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:45 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:00:45 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 1s" 2021-12-14 00:00:45 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:00:45 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] was found." 2021-12-14 00:00:45 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_myedge"] with poll frequency 0.1s and timeout 1s" 2021-12-14 00:00:45 - MenuPage - INFO - Element //*[@id="widget-carousel_myedge"] found." 2021-12-14 00:00:45 - MenuPage - INFO - Element //*[@id="widget-carousel_myedge"] was found." 2021-12-14 00:00:45 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_myusers"] with poll frequency 0.1s and timeout 1s" 2021-12-14 00:00:46 - MenuPage - INFO - Element //*[@id="widget-carousel_myusers"] was not found - it was not visible in 1s" 2021-12-14 00:00:46 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mynetworks"] with poll frequency 0.1s and timeout 1s" 2021-12-14 00:00:47 - MenuPage - INFO - Element //*[@id="widget-carousel_mynetworks"] was not found - it was not visible in 1s" 2021-12-14 00:00:47 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_myfunctions"] with poll frequency 0.1s and timeout 1s" 2021-12-14 00:00:48 - MenuPage - INFO - Element //*[@id="widget-carousel_myfunctions"] was not found - it was not visible in 1s" 2021-12-14 00:00:48 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_devicetemplates"] with poll frequency 0.1s and timeout 1s" 2021-12-14 00:00:49 - MenuPage - INFO - Element //*[@id="widget-carousel_devicetemplates"] was not found - it was not visible in 1s" 2021-12-14 00:00:49 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_myspaces"] with poll frequency 0.1s and timeout 1s" 2021-12-14 00:00:50 - MenuPage - INFO - Element //*[@id="widget-carousel_myspaces"] was not found - it was not visible in 1s" | |||
| Passed | tests/Login_tests/functional_tests/test_login.py::test_otwieranie_strony_logowania_z_zainicjowanym_uzytkownikiem | 10.73 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-14 00:00:55 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:55 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:55 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:55 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:55 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:55 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:55 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:00:55 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:57 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:00:57 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:57 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:00:57 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:57 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:00:57 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:00:57 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:00:57 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:57 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:00:57 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:00:57 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:57 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:00:57 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:57 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:00:57 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:00:57 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:00:57 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:57 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:00:58 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:58 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:58 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:58 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:58 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:00:58 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:00:58 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:00:58 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:00:58 - LoginPage - INFO - Trying to find element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-14 00:00:58 - LoginPage - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:58 - LoginPage - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:58 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:58 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:58 - LoginPage - INFO - Found element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-14 00:00:58 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.5s and timeout 5s" 2021-12-14 00:00:58 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:58 - LoginPage - INFO - Trying to find element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-14 00:00:58 - LoginPage - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:00:58 - LoginPage - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:58 - BaseElement - INFO - Waiting for element //div[contains(@class,'LoadingIndicator')] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:00:58 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] found." 2021-12-14 00:00:58 - LoginPage - INFO - Found element ("//div[contains(@class,'LoadingIndicator')]", 'Base')" 2021-12-14 00:00:58 - BaseElement - INFO - Waiting for element to disappear //div[contains(@class,'LoadingIndicator')] with poll frequency 0.5 and timeout 15" 2021-12-14 00:00:58 - BaseElement - INFO - Element //div[contains(@class,'LoadingIndicator')] disappeared." 2021-12-14 00:00:58 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:00:58 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:01 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:01:01 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:01:01 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:01:01 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:01:01 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:01:01 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." | |||
| Passed | tests/My_Property_tests/functional_tests/test_property_overview.py::test_ustawienie_poprawnych_danych_nieruchomosci | 22.13 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-14 00:03:30 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:03:30 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:30 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:30 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:30 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:30 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:03:30 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:03:30 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:30 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:03:30 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:30 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:03:30 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:30 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:03:30 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:03:30 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:03:30 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:30 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:03:30 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:03:30 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:30 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:03:30 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:30 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:03:30 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:03:30 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:03:30 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:31 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:03:31 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:03:31 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:31 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:31 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:31 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:31 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:03:31 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:03:31 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:03:31 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:03:31 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:33 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:03:33 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:33 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:03:33 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:03:33 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:33 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:03:33 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:03:33 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:33 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:03:33 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:33 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:03:33 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:03:33 - BaseElement - INFO - Trying to click element with xpath //*[@id="widget-carousel_mysite"]" 2021-12-14 00:03:34 - BaseElement - INFO - Element with xpath //*[@id="widget-carousel_mysite"] was clicked" 2021-12-14 00:03:34 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:03:34 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:34 - MyPropertyPage - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:03:34 - Input - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:34 - Input - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:03:34 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:03:34 - Input - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:34 - Input - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:03:34 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:03:34 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:34 - MyPropertyPage - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:03:34 - Input - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:34 - Input - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:03:34 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:03:34 - Input - INFO - Trying to get base element with xpath //*[@id="overview-tab_site-name"]" 2021-12-14 00:03:34 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_site-name"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:34 - BaseElement - INFO - Element //*[@id="overview-tab_site-name"]//input found." 2021-12-14 00:03:35 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_address-1"]', 'Input')" 2021-12-14 00:03:35 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_address-1"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:35 - MyPropertyPage - INFO - Element //*[@id="overview-tab_address-1"] found." 2021-12-14 00:03:35 - Input - INFO - Waiting for element //*[@id="overview-tab_address-1"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:35 - Input - INFO - Element //*[@id="overview-tab_address-1"] found." 2021-12-14 00:03:35 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_address-1"]', 'Input')" 2021-12-14 00:03:35 - Input - INFO - Trying to get base element with xpath //*[@id="overview-tab_address-1"]" 2021-12-14 00:03:35 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_address-1"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:35 - BaseElement - INFO - Element //*[@id="overview-tab_address-1"]//input found." 2021-12-14 00:03:35 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_zipCode"]', 'Input')" 2021-12-14 00:03:35 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_zipCode"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:35 - MyPropertyPage - INFO - Element //*[@id="overview-tab_zipCode"] found." 2021-12-14 00:03:35 - Input - INFO - Waiting for element //*[@id="overview-tab_zipCode"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:35 - Input - INFO - Element //*[@id="overview-tab_zipCode"] found." 2021-12-14 00:03:35 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_zipCode"]', 'Input')" 2021-12-14 00:03:35 - Input - INFO - Trying to get base element with xpath //*[@id="overview-tab_zipCode"]" 2021-12-14 00:03:35 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_zipCode"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:35 - BaseElement - INFO - Element //*[@id="overview-tab_zipCode"]//input found." 2021-12-14 00:03:35 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_town"]', 'Input')" 2021-12-14 00:03:35 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_town"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:35 - MyPropertyPage - INFO - Element //*[@id="overview-tab_town"] found." 2021-12-14 00:03:36 - Input - INFO - Waiting for element //*[@id="overview-tab_town"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:36 - Input - INFO - Element //*[@id="overview-tab_town"] found." 2021-12-14 00:03:36 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_town"]', 'Input')" 2021-12-14 00:03:36 - Input - INFO - Trying to get base element with xpath //*[@id="overview-tab_town"]" 2021-12-14 00:03:36 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_town"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:36 - BaseElement - INFO - Element //*[@id="overview-tab_town"]//input found." 2021-12-14 00:03:36 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_country"]', 'Dropdown')" 2021-12-14 00:03:36 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_country"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:36 - MyPropertyPage - INFO - Element //*[@id="overview-tab_country"] found." 2021-12-14 00:03:36 - Dropdown - INFO - Waiting for element //*[@id="overview-tab_country"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:36 - Dropdown - INFO - Element //*[@id="overview-tab_country"] found." 2021-12-14 00:03:36 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_country"]', 'Dropdown')" 2021-12-14 00:03:36 - Dropdown - INFO - Trying to click element with xpath //*[@id="overview-tab_country"]" 2021-12-14 00:03:36 - Dropdown - INFO - Element with xpath //*[@id="overview-tab_country"] was clicked" 2021-12-14 00:03:36 - Dropdown - INFO - Trying to get base element with xpath //*[@id="overview-tab_country"]" 2021-12-14 00:03:36 - BaseElement - INFO - Waiting for element //span[text()="Poland"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:36 - BaseElement - INFO - Element //span[text()="Poland"]/.. found." 2021-12-14 00:03:36 - BaseElement - INFO - Trying to click element with xpath //span[text()="Poland"]/.." 2021-12-14 00:03:36 - BaseElement - INFO - Element with xpath //span[text()="Poland"]/.. was clicked" 2021-12-14 00:03:36 - MyPropertyPage - INFO - Trying to find element ('//*[@id="gpslat"]', 'Input')" 2021-12-14 00:03:36 - MyPropertyPage - INFO - Waiting for element //*[@id="gpslat"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:36 - MyPropertyPage - INFO - Element //*[@id="gpslat"] found." 2021-12-14 00:03:36 - Input - INFO - Waiting for element //*[@id="gpslat"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:36 - Input - INFO - Element //*[@id="gpslat"] found." 2021-12-14 00:03:36 - MyPropertyPage - INFO - Found element ('//*[@id="gpslat"]', 'Input')" 2021-12-14 00:03:36 - Input - INFO - Trying to get base element with xpath //*[@id="gpslat"]" 2021-12-14 00:03:36 - BaseElement - INFO - Waiting for element //*[@id="gpslat"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:36 - BaseElement - INFO - Element //*[@id="gpslat"]//input found." 2021-12-14 00:03:37 - MyPropertyPage - INFO - Trying to find element ('//*[@id="gpslon"]', 'Input')" 2021-12-14 00:03:37 - MyPropertyPage - INFO - Waiting for element //*[@id="gpslon"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:37 - MyPropertyPage - INFO - Element //*[@id="gpslon"] found." 2021-12-14 00:03:37 - Input - INFO - Waiting for element //*[@id="gpslon"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:37 - Input - INFO - Element //*[@id="gpslon"] found." 2021-12-14 00:03:37 - MyPropertyPage - INFO - Found element ('//*[@id="gpslon"]', 'Input')" 2021-12-14 00:03:37 - Input - INFO - Trying to get base element with xpath //*[@id="gpslon"]" 2021-12-14 00:03:37 - BaseElement - INFO - Waiting for element //*[@id="gpslon"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:37 - BaseElement - INFO - Element //*[@id="gpslon"]//input found." 2021-12-14 00:03:37 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_type"]', 'Dropdown')" 2021-12-14 00:03:37 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_type"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:37 - MyPropertyPage - INFO - Element //*[@id="overview-tab_type"] found." 2021-12-14 00:03:37 - Dropdown - INFO - Waiting for element //*[@id="overview-tab_type"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:37 - Dropdown - INFO - Element //*[@id="overview-tab_type"] found." 2021-12-14 00:03:37 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_type"]', 'Dropdown')" 2021-12-14 00:03:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="overview-tab_type"]" 2021-12-14 00:03:37 - Dropdown - INFO - Element with xpath //*[@id="overview-tab_type"] was clicked" 2021-12-14 00:03:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="overview-tab_type"]" 2021-12-14 00:03:37 - BaseElement - INFO - Waiting for element //span[text()="Industrial"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:37 - BaseElement - INFO - Element //span[text()="Industrial"]/.. found." 2021-12-14 00:03:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Industrial"]/.." 2021-12-14 00:03:37 - BaseElement - INFO - Element with xpath //span[text()="Industrial"]/.. was clicked" 2021-12-14 00:03:37 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_main-usage"]', 'Dropdown')" 2021-12-14 00:03:37 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_main-usage"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:37 - MyPropertyPage - INFO - Element //*[@id="overview-tab_main-usage"] found." 2021-12-14 00:03:37 - Dropdown - INFO - Waiting for element //*[@id="overview-tab_main-usage"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:37 - Dropdown - INFO - Element //*[@id="overview-tab_main-usage"] found." 2021-12-14 00:03:37 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_main-usage"]', 'Dropdown')" 2021-12-14 00:03:37 - Dropdown - INFO - Trying to click element with xpath //*[@id="overview-tab_main-usage"]" 2021-12-14 00:03:37 - Dropdown - INFO - Element with xpath //*[@id="overview-tab_main-usage"] was clicked" 2021-12-14 00:03:37 - Dropdown - INFO - Trying to get base element with xpath //*[@id="overview-tab_main-usage"]" 2021-12-14 00:03:37 - BaseElement - INFO - Waiting for element //span[text()="Casino"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:37 - BaseElement - INFO - Element //span[text()="Casino"]/.. found." 2021-12-14 00:03:37 - BaseElement - INFO - Trying to click element with xpath //span[text()="Casino"]/.." 2021-12-14 00:03:38 - BaseElement - INFO - Element with xpath //span[text()="Casino"]/.. was clicked" 2021-12-14 00:03:38 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_gross-surface"]', 'Input')" 2021-12-14 00:03:38 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_gross-surface"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:38 - MyPropertyPage - INFO - Element //*[@id="overview-tab_gross-surface"] found." 2021-12-14 00:03:38 - Input - INFO - Waiting for element //*[@id="overview-tab_gross-surface"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:38 - Input - INFO - Element //*[@id="overview-tab_gross-surface"] found." 2021-12-14 00:03:38 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_gross-surface"]', 'Input')" 2021-12-14 00:03:38 - Input - INFO - Trying to get base element with xpath //*[@id="overview-tab_gross-surface"]" 2021-12-14 00:03:38 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_gross-surface"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:38 - BaseElement - INFO - Element //*[@id="overview-tab_gross-surface"]//input found." 2021-12-14 00:03:38 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_people"]', 'Input')" 2021-12-14 00:03:38 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_people"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:38 - MyPropertyPage - INFO - Element //*[@id="overview-tab_people"] found." 2021-12-14 00:03:38 - Input - INFO - Waiting for element //*[@id="overview-tab_people"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:38 - Input - INFO - Element //*[@id="overview-tab_people"] found." 2021-12-14 00:03:38 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_people"]', 'Input')" 2021-12-14 00:03:38 - Input - INFO - Trying to get base element with xpath //*[@id="overview-tab_people"]" 2021-12-14 00:03:38 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_people"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:38 - BaseElement - INFO - Element //*[@id="overview-tab_people"]//input found." 2021-12-14 00:03:38 - MyPropertyPage - INFO - Trying to find element ("//span[text()='Save']//ancestor::button", 'Button')" 2021-12-14 00:03:38 - MyPropertyPage - INFO - Waiting for element //span[text()='Save']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:38 - MyPropertyPage - INFO - Element //span[text()='Save']//ancestor::button found." 2021-12-14 00:03:38 - Button - INFO - Waiting for element //span[text()='Save']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:38 - Button - INFO - Element //span[text()='Save']//ancestor::button found." 2021-12-14 00:03:38 - MyPropertyPage - INFO - Found element ("//span[text()='Save']//ancestor::button", 'Button')" 2021-12-14 00:03:38 - Button - INFO - Trying to click element with xpath //span[text()='Save']//ancestor::button" 2021-12-14 00:03:38 - Button - INFO - Element with xpath //span[text()='Save']//ancestor::button was clicked" 2021-12-14 00:03:38 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:03:38 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:03:46 - Input - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - Input - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:03:46 - Input - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 10s" 2021-12-14 00:03:46 - Input - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_country"]', 'Dropdown')" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_country"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Element //*[@id="overview-tab_country"] found." 2021-12-14 00:03:46 - Dropdown - INFO - Waiting for element //*[@id="overview-tab_country"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - Dropdown - INFO - Element //*[@id="overview-tab_country"] found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_country"]', 'Dropdown')" 2021-12-14 00:03:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="overview-tab_country"]" 2021-12-14 00:03:46 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_country"]/div[contains(@class,"comp")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - BaseElement - INFO - Element //*[@id="overview-tab_country"]/div[contains(@class,"comp")] found." 2021-12-14 00:03:46 - BaseElement - INFO - Trying to get text of element with xpath //*[@id="overview-tab_country"]/div[contains(@class,"comp")]" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:03:46 - Input - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - Input - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:03:46 - Input - INFO - Trying to get base element with xpath //*[@id="overview-tab_site-name"]" 2021-12-14 00:03:46 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_site-name"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - BaseElement - INFO - Element //*[@id="overview-tab_site-name"]//input found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_address-1"]', 'Input')" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_address-1"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Element //*[@id="overview-tab_address-1"] found." 2021-12-14 00:03:46 - Input - INFO - Waiting for element //*[@id="overview-tab_address-1"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - Input - INFO - Element //*[@id="overview-tab_address-1"] found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_address-1"]', 'Input')" 2021-12-14 00:03:46 - Input - INFO - Trying to get base element with xpath //*[@id="overview-tab_address-1"]" 2021-12-14 00:03:46 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_address-1"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - BaseElement - INFO - Element //*[@id="overview-tab_address-1"]//input found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_zipCode"]', 'Input')" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_zipCode"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Element //*[@id="overview-tab_zipCode"] found." 2021-12-14 00:03:46 - Input - INFO - Waiting for element //*[@id="overview-tab_zipCode"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - Input - INFO - Element //*[@id="overview-tab_zipCode"] found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_zipCode"]', 'Input')" 2021-12-14 00:03:46 - Input - INFO - Trying to get base element with xpath //*[@id="overview-tab_zipCode"]" 2021-12-14 00:03:46 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_zipCode"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - BaseElement - INFO - Element //*[@id="overview-tab_zipCode"]//input found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_town"]', 'Input')" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_town"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Element //*[@id="overview-tab_town"] found." 2021-12-14 00:03:46 - Input - INFO - Waiting for element //*[@id="overview-tab_town"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - Input - INFO - Element //*[@id="overview-tab_town"] found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_town"]', 'Input')" 2021-12-14 00:03:46 - Input - INFO - Trying to get base element with xpath //*[@id="overview-tab_town"]" 2021-12-14 00:03:46 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_town"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - BaseElement - INFO - Element //*[@id="overview-tab_town"]//input found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_country"]', 'Dropdown')" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_country"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Element //*[@id="overview-tab_country"] found." 2021-12-14 00:03:46 - Dropdown - INFO - Waiting for element //*[@id="overview-tab_country"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - Dropdown - INFO - Element //*[@id="overview-tab_country"] found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_country"]', 'Dropdown')" 2021-12-14 00:03:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="overview-tab_country"]" 2021-12-14 00:03:46 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_country"]/div[contains(@class,"comp")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - BaseElement - INFO - Element //*[@id="overview-tab_country"]/div[contains(@class,"comp")] found." 2021-12-14 00:03:46 - BaseElement - INFO - Trying to get text of element with xpath //*[@id="overview-tab_country"]/div[contains(@class,"comp")]" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Trying to find element ('//*[@id="gpslat"]', 'Input')" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Waiting for element //*[@id="gpslat"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Element //*[@id="gpslat"] found." 2021-12-14 00:03:46 - Input - INFO - Waiting for element //*[@id="gpslat"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - Input - INFO - Element //*[@id="gpslat"] found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Found element ('//*[@id="gpslat"]', 'Input')" 2021-12-14 00:03:46 - Input - INFO - Trying to get base element with xpath //*[@id="gpslat"]" 2021-12-14 00:03:46 - BaseElement - INFO - Waiting for element //*[@id="gpslat"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - BaseElement - INFO - Element //*[@id="gpslat"]//input found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Trying to find element ('//*[@id="gpslon"]', 'Input')" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Waiting for element //*[@id="gpslon"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Element //*[@id="gpslon"] found." 2021-12-14 00:03:46 - Input - INFO - Waiting for element //*[@id="gpslon"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - Input - INFO - Element //*[@id="gpslon"] found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Found element ('//*[@id="gpslon"]', 'Input')" 2021-12-14 00:03:46 - Input - INFO - Trying to get base element with xpath //*[@id="gpslon"]" 2021-12-14 00:03:46 - BaseElement - INFO - Waiting for element //*[@id="gpslon"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - BaseElement - INFO - Element //*[@id="gpslon"]//input found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_type"]', 'Dropdown')" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_type"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:46 - MyPropertyPage - INFO - Element //*[@id="overview-tab_type"] found." 2021-12-14 00:03:46 - Dropdown - INFO - Waiting for element //*[@id="overview-tab_type"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:46 - Dropdown - INFO - Element //*[@id="overview-tab_type"] found." 2021-12-14 00:03:46 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_type"]', 'Dropdown')" 2021-12-14 00:03:46 - Dropdown - INFO - Trying to get base element with xpath //*[@id="overview-tab_type"]" 2021-12-14 00:03:46 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_type"]/div[contains(@class,"comp")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:47 - BaseElement - INFO - Element //*[@id="overview-tab_type"]/div[contains(@class,"comp")] found." 2021-12-14 00:03:47 - BaseElement - INFO - Trying to get text of element with xpath //*[@id="overview-tab_type"]/div[contains(@class,"comp")]" 2021-12-14 00:03:47 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_main-usage"]', 'Dropdown')" 2021-12-14 00:03:47 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_main-usage"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:47 - MyPropertyPage - INFO - Element //*[@id="overview-tab_main-usage"] found." 2021-12-14 00:03:47 - Dropdown - INFO - Waiting for element //*[@id="overview-tab_main-usage"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:47 - Dropdown - INFO - Element //*[@id="overview-tab_main-usage"] found." 2021-12-14 00:03:47 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_main-usage"]', 'Dropdown')" 2021-12-14 00:03:47 - Dropdown - INFO - Trying to get base element with xpath //*[@id="overview-tab_main-usage"]" 2021-12-14 00:03:47 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_main-usage"]/div[contains(@class,"comp")] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:47 - BaseElement - INFO - Element //*[@id="overview-tab_main-usage"]/div[contains(@class,"comp")] found." 2021-12-14 00:03:47 - BaseElement - INFO - Trying to get text of element with xpath //*[@id="overview-tab_main-usage"]/div[contains(@class,"comp")]" 2021-12-14 00:03:47 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_gross-surface"]', 'Input')" 2021-12-14 00:03:47 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_gross-surface"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:47 - MyPropertyPage - INFO - Element //*[@id="overview-tab_gross-surface"] found." 2021-12-14 00:03:47 - Input - INFO - Waiting for element //*[@id="overview-tab_gross-surface"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:47 - Input - INFO - Element //*[@id="overview-tab_gross-surface"] found." 2021-12-14 00:03:47 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_gross-surface"]', 'Input')" 2021-12-14 00:03:47 - Input - INFO - Trying to get base element with xpath //*[@id="overview-tab_gross-surface"]" 2021-12-14 00:03:47 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_gross-surface"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:47 - BaseElement - INFO - Element //*[@id="overview-tab_gross-surface"]//input found." 2021-12-14 00:03:47 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_people"]', 'Input')" 2021-12-14 00:03:47 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_people"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:47 - MyPropertyPage - INFO - Element //*[@id="overview-tab_people"] found." 2021-12-14 00:03:47 - Input - INFO - Waiting for element //*[@id="overview-tab_people"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:47 - Input - INFO - Element //*[@id="overview-tab_people"] found." 2021-12-14 00:03:47 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_people"]', 'Input')" 2021-12-14 00:03:47 - Input - INFO - Trying to get base element with xpath //*[@id="overview-tab_people"]" 2021-12-14 00:03:47 - BaseElement - INFO - Waiting for element //*[@id="overview-tab_people"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:47 - BaseElement - INFO - Element //*[@id="overview-tab_people"]//input found." 2021-12-14 00:03:47 - MyPropertyPage - INFO - Trying to find element ("//a[text()='Structure']//ancestor::li", 'Base')" 2021-12-14 00:03:47 - MyPropertyPage - INFO - Waiting for element //a[text()='Structure']//ancestor::li with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:47 - MyPropertyPage - INFO - Element //a[text()='Structure']//ancestor::li found." 2021-12-14 00:03:47 - BaseElement - INFO - Waiting for element //a[text()='Structure']//ancestor::li with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:47 - BaseElement - INFO - Element //a[text()='Structure']//ancestor::li found." 2021-12-14 00:03:47 - MyPropertyPage - INFO - Found element ("//a[text()='Structure']//ancestor::li", 'Base')" 2021-12-14 00:03:47 - BaseElement - INFO - Trying to click element with xpath //a[text()='Structure']//ancestor::li" 2021-12-14 00:03:47 - BaseElement - INFO - Element with xpath //a[text()='Structure']//ancestor::li was clicked" | |||
| Passed | tests/My_Property_tests/functional_tests/test_property_structure.py::test_wyswietlanie_okna_dialogowego_dla_budynku | 8.89 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-14 00:03:51 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:03:51 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:52 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:52 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:52 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:52 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:03:52 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:03:52 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:52 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:03:52 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:52 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:03:52 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:52 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:03:52 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:03:52 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:03:52 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:52 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:03:52 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:03:52 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:52 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:03:52 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:52 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:03:52 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:03:52 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:03:52 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:52 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:03:52 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:03:52 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:52 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:52 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:52 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:03:52 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:03:52 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:03:52 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:03:52 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:03:52 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:54 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:03:54 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:54 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:03:54 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:03:54 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:54 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:03:54 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:03:54 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:54 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:03:54 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:54 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:03:54 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:03:54 - BaseElement - INFO - Trying to click element with xpath //*[@id="widget-carousel_mysite"]" 2021-12-14 00:03:54 - BaseElement - INFO - Element with xpath //*[@id="widget-carousel_mysite"] was clicked" 2021-12-14 00:03:54 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:03:54 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:55 - MyPropertyPage - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:03:55 - Input - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:55 - Input - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:03:55 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:03:55 - Input - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:55 - Input - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:03:55 - MyPropertyPage - INFO - Trying to find element ("//a[text()='Structure']//ancestor::li", 'Base')" 2021-12-14 00:03:55 - MyPropertyPage - INFO - Waiting for element //a[text()='Structure']//ancestor::li with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:55 - MyPropertyPage - INFO - Element //a[text()='Structure']//ancestor::li found." 2021-12-14 00:03:55 - BaseElement - INFO - Waiting for element //a[text()='Structure']//ancestor::li with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:55 - BaseElement - INFO - Element //a[text()='Structure']//ancestor::li found." 2021-12-14 00:03:55 - MyPropertyPage - INFO - Found element ("//a[text()='Structure']//ancestor::li", 'Base')" 2021-12-14 00:03:55 - BaseElement - INFO - Trying to click element with xpath //a[text()='Structure']//ancestor::li" 2021-12-14 00:03:55 - BaseElement - INFO - Element with xpath //a[text()='Structure']//ancestor::li was clicked" 2021-12-14 00:03:55 - MyPropertyPage - INFO - Trying to find element ('//table', 'Table')" 2021-12-14 00:03:55 - MyPropertyPage - INFO - Waiting for element //table with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:55 - MyPropertyPage - INFO - Element //table found." 2021-12-14 00:03:55 - BaseElement - INFO - Waiting for element //table with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:55 - BaseElement - INFO - Element //table found." 2021-12-14 00:03:55 - MyPropertyPage - INFO - Found element ('//table', 'Table')" 2021-12-14 00:03:55 - BaseElement - INFO - Waiting for element //table with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:55 - BaseElement - INFO - Element //table found." 2021-12-14 00:03:55 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:03:55 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:03:56 - MyPropertyPage - INFO - Trying to find element ("//span[text()='Add to structure']//ancestor::button", 'Button')" 2021-12-14 00:03:56 - MyPropertyPage - INFO - Waiting for element //span[text()='Add to structure']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:56 - MyPropertyPage - INFO - Element //span[text()='Add to structure']//ancestor::button found." 2021-12-14 00:03:56 - Button - INFO - Waiting for element //span[text()='Add to structure']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:56 - Button - INFO - Element //span[text()='Add to structure']//ancestor::button found." 2021-12-14 00:03:56 - MyPropertyPage - INFO - Found element ("//span[text()='Add to structure']//ancestor::button", 'Button')" 2021-12-14 00:03:56 - Button - INFO - Trying to click element with xpath //span[text()='Add to structure']//ancestor::button" 2021-12-14 00:03:56 - Button - INFO - Element with xpath //span[text()='Add to structure']//ancestor::button was clicked" 2021-12-14 00:03:56 - AddToStructureModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:03:56 - AddToStructureModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:56 - AddToStructureModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:03:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:03:56 - AddToStructureModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:03:56 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:56 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:03:56 - AddToStructureModal - INFO - Trying to find element ("//span[contains(@class, 'title')]", 'Base')" 2021-12-14 00:03:56 - AddToStructureModal - INFO - Waiting for element //span[contains(@class, 'title')] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:03:56 - AddToStructureModal - INFO - Element //span[contains(@class, 'title')] found." 2021-12-14 00:03:56 - BaseElement - INFO - Waiting for element //span[contains(@class, 'title')] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:03:56 - BaseElement - INFO - Element //span[contains(@class, 'title')] found." 2021-12-14 00:03:56 - AddToStructureModal - INFO - Found element ("//span[contains(@class, 'title')]", 'Base')" 2021-12-14 00:03:56 - BaseElement - INFO - Trying to get text of element with xpath //span[contains(@class, 'title')]" | |||
| Passed | tests/My_Property_tests/functional_tests/test_property_structure.py::test_dodanie_pierwszego_budynku | 13.32 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-14 00:04:01 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:04:01 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:01 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:01 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:01 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:01 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:04:01 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:04:01 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:01 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:04:01 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:01 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:04:01 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:01 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:04:01 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:04:01 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:04:01 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:01 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:04:01 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:04:01 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:01 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:04:01 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:01 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:04:01 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:04:01 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:04:01 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:01 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:04:01 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:04:01 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:01 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:01 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:01 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:01 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:04:01 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:04:02 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:04:02 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:04:02 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:03 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:04:03 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:03 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:04:03 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:04:03 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:03 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:04:03 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:04:03 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:03 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:04:03 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:03 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:04:03 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:04:03 - BaseElement - INFO - Trying to click element with xpath //*[@id="widget-carousel_mysite"]" 2021-12-14 00:04:03 - BaseElement - INFO - Element with xpath //*[@id="widget-carousel_mysite"] was clicked" 2021-12-14 00:04:03 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:04:03 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:03 - MyPropertyPage - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:04:03 - Input - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:04 - Input - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:04:04 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:04:04 - Input - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:04 - Input - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:04:04 - MyPropertyPage - INFO - Trying to find element ("//a[text()='Structure']//ancestor::li", 'Base')" 2021-12-14 00:04:04 - MyPropertyPage - INFO - Waiting for element //a[text()='Structure']//ancestor::li with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:04 - MyPropertyPage - INFO - Element //a[text()='Structure']//ancestor::li found." 2021-12-14 00:04:04 - BaseElement - INFO - Waiting for element //a[text()='Structure']//ancestor::li with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:04 - BaseElement - INFO - Element //a[text()='Structure']//ancestor::li found." 2021-12-14 00:04:04 - MyPropertyPage - INFO - Found element ("//a[text()='Structure']//ancestor::li", 'Base')" 2021-12-14 00:04:04 - BaseElement - INFO - Trying to click element with xpath //a[text()='Structure']//ancestor::li" 2021-12-14 00:04:04 - BaseElement - INFO - Element with xpath //a[text()='Structure']//ancestor::li was clicked" 2021-12-14 00:04:04 - MyPropertyPage - INFO - Trying to find element ('//table', 'Table')" 2021-12-14 00:04:04 - MyPropertyPage - INFO - Waiting for element //table with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:04 - MyPropertyPage - INFO - Element //table found." 2021-12-14 00:04:04 - BaseElement - INFO - Waiting for element //table with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:04 - BaseElement - INFO - Element //table found." 2021-12-14 00:04:04 - MyPropertyPage - INFO - Found element ('//table', 'Table')" 2021-12-14 00:04:04 - BaseElement - INFO - Waiting for element //table with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:04 - BaseElement - INFO - Element //table found." 2021-12-14 00:04:04 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:04 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:04 - MyPropertyPage - INFO - Trying to find element ("//span[text()='Add to structure']//ancestor::button", 'Button')" 2021-12-14 00:04:04 - MyPropertyPage - INFO - Waiting for element //span[text()='Add to structure']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:04 - MyPropertyPage - INFO - Element //span[text()='Add to structure']//ancestor::button found." 2021-12-14 00:04:04 - Button - INFO - Waiting for element //span[text()='Add to structure']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:04 - Button - INFO - Element //span[text()='Add to structure']//ancestor::button found." 2021-12-14 00:04:04 - MyPropertyPage - INFO - Found element ("//span[text()='Add to structure']//ancestor::button", 'Button')" 2021-12-14 00:04:04 - Button - INFO - Trying to click element with xpath //span[text()='Add to structure']//ancestor::button" 2021-12-14 00:04:04 - Button - INFO - Element with xpath //span[text()='Add to structure']//ancestor::button was clicked" 2021-12-14 00:04:04 - AddToStructureModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:04:04 - AddToStructureModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:04 - AddToStructureModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:04:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:04:04 - AddToStructureModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:04:04 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:04 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:04:04 - AddToStructureModal - INFO - Trying to find element ("//span[contains(@class, 'title')]", 'Base')" 2021-12-14 00:04:04 - AddToStructureModal - INFO - Waiting for element //span[contains(@class, 'title')] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:04 - AddToStructureModal - INFO - Element //span[contains(@class, 'title')] found." 2021-12-14 00:04:04 - BaseElement - INFO - Waiting for element //span[contains(@class, 'title')] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:04 - BaseElement - INFO - Element //span[contains(@class, 'title')] found." 2021-12-14 00:04:04 - AddToStructureModal - INFO - Found element ("//span[contains(@class, 'title')]", 'Base')" 2021-12-14 00:04:04 - BaseElement - INFO - Trying to get text of element with xpath //span[contains(@class, 'title')]" 2021-12-14 00:04:04 - AddToStructureModal - INFO - Trying to find element ('//*[@id="name"]', 'Input')" 2021-12-14 00:04:04 - AddToStructureModal - INFO - Waiting for element //*[@id="name"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:04 - AddToStructureModal - INFO - Element //*[@id="name"] found." 2021-12-14 00:04:04 - Input - INFO - Waiting for element //*[@id="name"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:04 - Input - INFO - Element //*[@id="name"] found." 2021-12-14 00:04:04 - AddToStructureModal - INFO - Found element ('//*[@id="name"]', 'Input')" 2021-12-14 00:04:04 - Input - INFO - Trying to get base element with xpath //*[@id="name"]" 2021-12-14 00:04:04 - BaseElement - INFO - Waiting for element //*[@id="name"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:04 - BaseElement - INFO - Element //*[@id="name"]//input found." 2021-12-14 00:04:04 - AddToStructureModal - INFO - Trying to find element ('//*[@id="usage"]', 'Dropdown')" 2021-12-14 00:04:04 - AddToStructureModal - INFO - Waiting for element //*[@id="usage"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:04 - AddToStructureModal - INFO - Element //*[@id="usage"] found." 2021-12-14 00:04:04 - Dropdown - INFO - Waiting for element //*[@id="usage"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:04 - Dropdown - INFO - Element //*[@id="usage"] found." 2021-12-14 00:04:04 - AddToStructureModal - INFO - Found element ('//*[@id="usage"]', 'Dropdown')" 2021-12-14 00:04:04 - Dropdown - INFO - Trying to click element with xpath //*[@id="usage"]" 2021-12-14 00:04:05 - Dropdown - INFO - Element with xpath //*[@id="usage"] was clicked" 2021-12-14 00:04:05 - Dropdown - INFO - Trying to get base element with xpath //*[@id="usage"]" 2021-12-14 00:04:05 - BaseElement - INFO - Waiting for element //span[text()="Museum"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:05 - BaseElement - INFO - Element //span[text()="Museum"]/.. found." 2021-12-14 00:04:05 - BaseElement - INFO - Trying to click element with xpath //span[text()="Museum"]/.." 2021-12-14 00:04:05 - BaseElement - INFO - Element with xpath //span[text()="Museum"]/.. was clicked" 2021-12-14 00:04:05 - AddToStructureModal - INFO - Trying to find element ('//*[@id="people"]', 'Input')" 2021-12-14 00:04:05 - AddToStructureModal - INFO - Waiting for element //*[@id="people"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:05 - AddToStructureModal - INFO - Element //*[@id="people"] found." 2021-12-14 00:04:05 - Input - INFO - Waiting for element //*[@id="people"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:05 - Input - INFO - Element //*[@id="people"] found." 2021-12-14 00:04:05 - AddToStructureModal - INFO - Found element ('//*[@id="people"]', 'Input')" 2021-12-14 00:04:05 - Input - INFO - Trying to get base element with xpath //*[@id="people"]" 2021-12-14 00:04:05 - BaseElement - INFO - Waiting for element //*[@id="people"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:05 - BaseElement - INFO - Element //*[@id="people"]//input found." 2021-12-14 00:04:05 - AddToStructureModal - INFO - Trying to find element ('//*[@id="surfacegross"]', 'Input')" 2021-12-14 00:04:05 - AddToStructureModal - INFO - Waiting for element //*[@id="surfacegross"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:05 - AddToStructureModal - INFO - Element //*[@id="surfacegross"] found." 2021-12-14 00:04:05 - Input - INFO - Waiting for element //*[@id="surfacegross"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:05 - Input - INFO - Element //*[@id="surfacegross"] found." 2021-12-14 00:04:05 - AddToStructureModal - INFO - Found element ('//*[@id="surfacegross"]', 'Input')" 2021-12-14 00:04:05 - Input - INFO - Trying to get base element with xpath //*[@id="surfacegross"]" 2021-12-14 00:04:05 - BaseElement - INFO - Waiting for element //*[@id="surfacegross"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:05 - BaseElement - INFO - Element //*[@id="surfacegross"]//input found." 2021-12-14 00:04:05 - AddToStructureModal - INFO - Trying to find element ('//*[@id="surfacenet"]', 'Input')" 2021-12-14 00:04:05 - AddToStructureModal - INFO - Waiting for element //*[@id="surfacenet"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:05 - AddToStructureModal - INFO - Element //*[@id="surfacenet"] found." 2021-12-14 00:04:05 - Input - INFO - Waiting for element //*[@id="surfacenet"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:05 - Input - INFO - Element //*[@id="surfacenet"] found." 2021-12-14 00:04:05 - AddToStructureModal - INFO - Found element ('//*[@id="surfacenet"]', 'Input')" 2021-12-14 00:04:05 - Input - INFO - Trying to get base element with xpath //*[@id="surfacenet"]" 2021-12-14 00:04:05 - BaseElement - INFO - Waiting for element //*[@id="surfacenet"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:05 - BaseElement - INFO - Element //*[@id="surfacenet"]//input found." 2021-12-14 00:04:05 - AddToStructureModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:04:05 - AddToStructureModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:05 - AddToStructureModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:04:05 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:05 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:04:05 - AddToStructureModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:04:05 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:04:05 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:04:05 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:04:08 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:04:08 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:08 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:08 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:08 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:08 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:08 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:08 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:08 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:09 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:09 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:09 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:09 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:09 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:09 - MyPropertyPage - INFO - Found component ('//table', 'Table')" | |||
| Passed | tests/My_Property_tests/functional_tests/test_property_structure.py::test_dodanie_pietra_dla_budynku | 14.76 | |
|
-------------------------------Captured log call-------------------------------- 2021-12-14 00:04:14 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:04:14 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:14 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:14 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:14 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:14 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:04:14 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 8s" 2021-12-14 00:04:14 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:14 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:04:14 - LoginPage - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:14 - LoginPage - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:04:14 - Input - INFO - Waiting for element //span[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:14 - Input - INFO - Element //span[@id='login-screen_login'] found." 2021-12-14 00:04:14 - LoginPage - INFO - Found element ("//span[@id='login-screen_login']", 'Input')" 2021-12-14 00:04:14 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_login']" 2021-12-14 00:04:14 - BaseElement - INFO - Waiting for element //span[@id='login-screen_login']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:14 - BaseElement - INFO - Element //span[@id='login-screen_login']//input found." 2021-12-14 00:04:14 - LoginPage - INFO - Trying to find element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:04:14 - LoginPage - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:14 - LoginPage - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:04:14 - Input - INFO - Waiting for element //span[@id='login-screen_password'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:14 - Input - INFO - Element //span[@id='login-screen_password'] found." 2021-12-14 00:04:14 - LoginPage - INFO - Found element ("//span[@id='login-screen_password']", 'Input')" 2021-12-14 00:04:14 - Input - INFO - Trying to get base element with xpath //span[@id='login-screen_password']" 2021-12-14 00:04:14 - BaseElement - INFO - Waiting for element //span[@id='login-screen_password']//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:14 - BaseElement - INFO - Element //span[@id='login-screen_password']//input found." 2021-12-14 00:04:14 - LoginPage - INFO - Trying to find element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:04:14 - LoginPage - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:14 - LoginPage - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:14 - Button - INFO - Waiting for element //button[@id='login-screen_login'] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:14 - Button - INFO - Element //button[@id='login-screen_login'] found." 2021-12-14 00:04:14 - LoginPage - INFO - Found element ("//button[@id='login-screen_login']", 'Button')" 2021-12-14 00:04:14 - Button - INFO - Trying to click element with xpath //button[@id='login-screen_login']" 2021-12-14 00:04:15 - Button - INFO - Element with xpath //button[@id='login-screen_login'] was clicked" 2021-12-14 00:04:15 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:04:15 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:17 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:04:17 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:17 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:04:17 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:04:17 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:17 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:04:17 - MenuPage - INFO - Trying to find element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:04:17 - MenuPage - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:17 - MenuPage - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:04:17 - BaseElement - INFO - Waiting for element //*[@id="widget-carousel_mysite"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:17 - BaseElement - INFO - Element //*[@id="widget-carousel_mysite"] found." 2021-12-14 00:04:17 - MenuPage - INFO - Found element ('//*[@id="widget-carousel_mysite"]', 'Base')" 2021-12-14 00:04:17 - BaseElement - INFO - Trying to click element with xpath //*[@id="widget-carousel_mysite"]" 2021-12-14 00:04:17 - BaseElement - INFO - Element with xpath //*[@id="widget-carousel_mysite"] was clicked" 2021-12-14 00:04:17 - MyPropertyPage - INFO - Trying to find element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:04:17 - MyPropertyPage - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:18 - MyPropertyPage - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:04:18 - Input - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:18 - Input - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:04:18 - MyPropertyPage - INFO - Found element ('//*[@id="overview-tab_site-name"]', 'Input')" 2021-12-14 00:04:18 - Input - INFO - Waiting for element //*[@id="overview-tab_site-name"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:18 - Input - INFO - Element //*[@id="overview-tab_site-name"] found." 2021-12-14 00:04:18 - MyPropertyPage - INFO - Trying to find element ("//a[text()='Structure']//ancestor::li", 'Base')" 2021-12-14 00:04:18 - MyPropertyPage - INFO - Waiting for element //a[text()='Structure']//ancestor::li with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:18 - MyPropertyPage - INFO - Element //a[text()='Structure']//ancestor::li found." 2021-12-14 00:04:18 - BaseElement - INFO - Waiting for element //a[text()='Structure']//ancestor::li with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:18 - BaseElement - INFO - Element //a[text()='Structure']//ancestor::li found." 2021-12-14 00:04:18 - MyPropertyPage - INFO - Found element ("//a[text()='Structure']//ancestor::li", 'Base')" 2021-12-14 00:04:18 - BaseElement - INFO - Trying to click element with xpath //a[text()='Structure']//ancestor::li" 2021-12-14 00:04:19 - BaseElement - INFO - Element with xpath //a[text()='Structure']//ancestor::li was clicked" 2021-12-14 00:04:19 - MyPropertyPage - INFO - Trying to find element ('//table', 'Table')" 2021-12-14 00:04:19 - MyPropertyPage - INFO - Waiting for element //table with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:19 - MyPropertyPage - INFO - Element //table found." 2021-12-14 00:04:19 - BaseElement - INFO - Waiting for element //table with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:19 - BaseElement - INFO - Element //table found." 2021-12-14 00:04:19 - MyPropertyPage - INFO - Found element ('//table', 'Table')" 2021-12-14 00:04:19 - BaseElement - INFO - Waiting for element //table with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:19 - BaseElement - INFO - Element //table found." 2021-12-14 00:04:19 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:19 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:19 - MyPropertyPage - INFO - Trying to find element ("//span[text()='Add to structure']//ancestor::button", 'Button')" 2021-12-14 00:04:19 - MyPropertyPage - INFO - Waiting for element //span[text()='Add to structure']//ancestor::button with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:19 - MyPropertyPage - INFO - Element //span[text()='Add to structure']//ancestor::button found." 2021-12-14 00:04:19 - Button - INFO - Waiting for element //span[text()='Add to structure']//ancestor::button with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:19 - Button - INFO - Element //span[text()='Add to structure']//ancestor::button found." 2021-12-14 00:04:19 - MyPropertyPage - INFO - Found element ("//span[text()='Add to structure']//ancestor::button", 'Button')" 2021-12-14 00:04:19 - Button - INFO - Trying to click element with xpath //span[text()='Add to structure']//ancestor::button" 2021-12-14 00:04:19 - Button - INFO - Element with xpath //span[text()='Add to structure']//ancestor::button was clicked" 2021-12-14 00:04:19 - AddToStructureModal - INFO - Trying to find element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:04:19 - AddToStructureModal - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:19 - AddToStructureModal - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:04:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:04:19 - AddToStructureModal - INFO - Found element ('//div[@class = "ABB_CommonUX_Dialog__content"]', 'Base')" 2021-12-14 00:04:19 - BaseElement - INFO - Waiting for element //div[@class = "ABB_CommonUX_Dialog__content"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:19 - BaseElement - INFO - Element //div[@class = "ABB_CommonUX_Dialog__content"] found." 2021-12-14 00:04:19 - AddToStructureModal - INFO - Trying to find element ("//span[contains(@class, 'title')]", 'Base')" 2021-12-14 00:04:19 - AddToStructureModal - INFO - Waiting for element //span[contains(@class, 'title')] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:19 - AddToStructureModal - INFO - Element //span[contains(@class, 'title')] found." 2021-12-14 00:04:19 - BaseElement - INFO - Waiting for element //span[contains(@class, 'title')] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:19 - BaseElement - INFO - Element //span[contains(@class, 'title')] found." 2021-12-14 00:04:19 - AddToStructureModal - INFO - Found element ("//span[contains(@class, 'title')]", 'Base')" 2021-12-14 00:04:19 - BaseElement - INFO - Trying to get text of element with xpath //span[contains(@class, 'title')]" 2021-12-14 00:04:19 - AddToStructureModal - INFO - Trying to find element ('//*[@id="structureType"]', 'Dropdown')" 2021-12-14 00:04:19 - AddToStructureModal - INFO - Waiting for element //*[@id="structureType"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:19 - AddToStructureModal - INFO - Element //*[@id="structureType"] found." 2021-12-14 00:04:19 - Dropdown - INFO - Waiting for element //*[@id="structureType"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:19 - Dropdown - INFO - Element //*[@id="structureType"] found." 2021-12-14 00:04:19 - AddToStructureModal - INFO - Found element ('//*[@id="structureType"]', 'Dropdown')" 2021-12-14 00:04:19 - Dropdown - INFO - Trying to click element with xpath //*[@id="structureType"]" 2021-12-14 00:04:20 - Dropdown - INFO - Element with xpath //*[@id="structureType"] was clicked" 2021-12-14 00:04:20 - Dropdown - INFO - Trying to get base element with xpath //*[@id="structureType"]" 2021-12-14 00:04:20 - BaseElement - INFO - Waiting for element //span[text()="Floor"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:20 - BaseElement - INFO - Element //span[text()="Floor"]/.. found." 2021-12-14 00:04:20 - BaseElement - INFO - Trying to click element with xpath //span[text()="Floor"]/.." 2021-12-14 00:04:20 - BaseElement - INFO - Element with xpath //span[text()="Floor"]/.. was clicked" 2021-12-14 00:04:20 - AddToStructureModal - INFO - Trying to find element ('//*[@id="parentId"]', 'Dropdown')" 2021-12-14 00:04:20 - AddToStructureModal - INFO - Waiting for element //*[@id="parentId"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:20 - AddToStructureModal - INFO - Element //*[@id="parentId"] found." 2021-12-14 00:04:20 - Dropdown - INFO - Waiting for element //*[@id="parentId"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:20 - Dropdown - INFO - Element //*[@id="parentId"] found." 2021-12-14 00:04:20 - AddToStructureModal - INFO - Found element ('//*[@id="parentId"]', 'Dropdown')" 2021-12-14 00:04:20 - Dropdown - INFO - Trying to click element with xpath //*[@id="parentId"]" 2021-12-14 00:04:20 - Dropdown - INFO - Element with xpath //*[@id="parentId"] was clicked" 2021-12-14 00:04:20 - Dropdown - INFO - Trying to get base element with xpath //*[@id="parentId"]" 2021-12-14 00:04:20 - BaseElement - INFO - Waiting for element //span[text()="Empire State Building"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:20 - BaseElement - INFO - Element //span[text()="Empire State Building"]/.. found." 2021-12-14 00:04:20 - BaseElement - INFO - Trying to click element with xpath //span[text()="Empire State Building"]/.." 2021-12-14 00:04:20 - BaseElement - INFO - Element with xpath //span[text()="Empire State Building"]/.. was clicked" 2021-12-14 00:04:20 - AddToStructureModal - INFO - Trying to find element ('//*[@id="name"]', 'Input')" 2021-12-14 00:04:20 - AddToStructureModal - INFO - Waiting for element //*[@id="name"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:20 - AddToStructureModal - INFO - Element //*[@id="name"] found." 2021-12-14 00:04:20 - Input - INFO - Waiting for element //*[@id="name"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:20 - Input - INFO - Element //*[@id="name"] found." 2021-12-14 00:04:20 - AddToStructureModal - INFO - Found element ('//*[@id="name"]', 'Input')" 2021-12-14 00:04:20 - Input - INFO - Trying to get base element with xpath //*[@id="name"]" 2021-12-14 00:04:20 - BaseElement - INFO - Waiting for element //*[@id="name"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:20 - BaseElement - INFO - Element //*[@id="name"]//input found." 2021-12-14 00:04:20 - AddToStructureModal - INFO - Trying to find element ('//*[@id="level"]', 'Input')" 2021-12-14 00:04:20 - AddToStructureModal - INFO - Waiting for element //*[@id="level"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:20 - AddToStructureModal - INFO - Element //*[@id="level"] found." 2021-12-14 00:04:20 - Input - INFO - Waiting for element //*[@id="level"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:20 - Input - INFO - Element //*[@id="level"] found." 2021-12-14 00:04:20 - AddToStructureModal - INFO - Found element ('//*[@id="level"]', 'Input')" 2021-12-14 00:04:20 - Input - INFO - Trying to get base element with xpath //*[@id="level"]" 2021-12-14 00:04:20 - BaseElement - INFO - Waiting for element //*[@id="level"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:20 - BaseElement - INFO - Element //*[@id="level"]//input found." 2021-12-14 00:04:20 - AddToStructureModal - INFO - Trying to find element ('//*[@id="usage"]', 'Dropdown')" 2021-12-14 00:04:20 - AddToStructureModal - INFO - Waiting for element //*[@id="usage"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:20 - AddToStructureModal - INFO - Element //*[@id="usage"] found." 2021-12-14 00:04:21 - Dropdown - INFO - Waiting for element //*[@id="usage"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:21 - Dropdown - INFO - Element //*[@id="usage"] found." 2021-12-14 00:04:21 - AddToStructureModal - INFO - Found element ('//*[@id="usage"]', 'Dropdown')" 2021-12-14 00:04:21 - Dropdown - INFO - Trying to click element with xpath //*[@id="usage"]" 2021-12-14 00:04:21 - Dropdown - INFO - Element with xpath //*[@id="usage"] was clicked" 2021-12-14 00:04:21 - Dropdown - INFO - Trying to get base element with xpath //*[@id="usage"]" 2021-12-14 00:04:21 - BaseElement - INFO - Waiting for element //span[text()="Bar"]/.. with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:21 - BaseElement - INFO - Element //span[text()="Bar"]/.. found." 2021-12-14 00:04:21 - BaseElement - INFO - Trying to click element with xpath //span[text()="Bar"]/.." 2021-12-14 00:04:21 - BaseElement - INFO - Element with xpath //span[text()="Bar"]/.. was clicked" 2021-12-14 00:04:21 - AddToStructureModal - INFO - Trying to find element ('//*[@id="people"]', 'Input')" 2021-12-14 00:04:21 - AddToStructureModal - INFO - Waiting for element //*[@id="people"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:21 - AddToStructureModal - INFO - Element //*[@id="people"] found." 2021-12-14 00:04:21 - Input - INFO - Waiting for element //*[@id="people"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:21 - Input - INFO - Element //*[@id="people"] found." 2021-12-14 00:04:21 - AddToStructureModal - INFO - Found element ('//*[@id="people"]', 'Input')" 2021-12-14 00:04:21 - Input - INFO - Trying to get base element with xpath //*[@id="people"]" 2021-12-14 00:04:21 - BaseElement - INFO - Waiting for element //*[@id="people"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:21 - BaseElement - INFO - Element //*[@id="people"]//input found." 2021-12-14 00:04:21 - AddToStructureModal - INFO - Trying to find element ('//*[@id="surfacegross"]', 'Input')" 2021-12-14 00:04:21 - AddToStructureModal - INFO - Waiting for element //*[@id="surfacegross"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:21 - AddToStructureModal - INFO - Element //*[@id="surfacegross"] found." 2021-12-14 00:04:21 - Input - INFO - Waiting for element //*[@id="surfacegross"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:21 - Input - INFO - Element //*[@id="surfacegross"] found." 2021-12-14 00:04:21 - AddToStructureModal - INFO - Found element ('//*[@id="surfacegross"]', 'Input')" 2021-12-14 00:04:21 - Input - INFO - Trying to get base element with xpath //*[@id="surfacegross"]" 2021-12-14 00:04:21 - BaseElement - INFO - Waiting for element //*[@id="surfacegross"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:21 - BaseElement - INFO - Element //*[@id="surfacegross"]//input found." 2021-12-14 00:04:21 - AddToStructureModal - INFO - Trying to find element ('//*[@id="surfacenet"]', 'Input')" 2021-12-14 00:04:21 - AddToStructureModal - INFO - Waiting for element //*[@id="surfacenet"] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:21 - AddToStructureModal - INFO - Element //*[@id="surfacenet"] found." 2021-12-14 00:04:21 - Input - INFO - Waiting for element //*[@id="surfacenet"] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:21 - Input - INFO - Element //*[@id="surfacenet"] found." 2021-12-14 00:04:21 - AddToStructureModal - INFO - Found element ('//*[@id="surfacenet"]', 'Input')" 2021-12-14 00:04:21 - Input - INFO - Trying to get base element with xpath //*[@id="surfacenet"]" 2021-12-14 00:04:21 - BaseElement - INFO - Waiting for element //*[@id="surfacenet"]//input with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:21 - BaseElement - INFO - Element //*[@id="surfacenet"]//input found." 2021-12-14 00:04:21 - AddToStructureModal - INFO - Trying to find element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:04:21 - AddToStructureModal - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 15s" 2021-12-14 00:04:21 - AddToStructureModal - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:04:21 - Button - INFO - Waiting for element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1s and timeout 5s" 2021-12-14 00:04:21 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] found." 2021-12-14 00:04:21 - AddToStructureModal - INFO - Found element ('(//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]', 'Button')" 2021-12-14 00:04:21 - Button - INFO - Trying to click element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()]" 2021-12-14 00:04:21 - Button - INFO - Element with xpath (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] was clicked" 2021-12-14 00:04:21 - Button - INFO - Waiting for element to disappear (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] with poll frequency 0.1 and timeout 30" 2021-12-14 00:04:22 - Button - INFO - Element (//div[@class = "ReactModalPortal"]//div[@data-testid = "DialogContainer"]//button[contains(@class, "primaryblue")])[last()] disappeared." 2021-12-14 00:04:22 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:22 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:22 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:22 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:23 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:23 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:23 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:23 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:23 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:23 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:23 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:23 - MyPropertyPage - INFO - Found component ('//table', 'Table')" 2021-12-14 00:04:24 - MyPropertyPage - INFO - Trying to find component ('//table', 'Table')" 2021-12-14 00:04:24 - MyPropertyPage - INFO - Found component ('//table', 'Table')" | |||